I am getting the following errors:
PHP Notice: Undefined index: Username class.form.php on line 43
PHP Notice: Undefined index: Password class.form.php on line 54
The form is showing in the source code but not the “view”
print_r is showing Form Object ( [sHTML:Form:private] =>
Thanks
To fix the last error, change:
<?php echo $sLoginMessage ?>to
<?php echo (isset($sLoginMessage)?$sLoginMessage:null); ?>With your other error, you’re trying to access an array index that does not exist.
$this->aStickyData[$sName]and the other aStickyData error is because these array indexes are not defined.