I seem to have access to the $my object in the autogenerated section,
but it seems undefined when embedded in the form html,
Any ideas? Oh .. found the solution. I'll post this anyway.
<?php
echo $my->name;
print_r($my);
exit;
?>
but it seems undefined when embedded in the form html,
<input type="text" name="email" value="<?php echo $my->email ?>" size="20" maxlength="80">
Any ideas? Oh .. found the solution. I'll post this anyway.