Posted by Jeff on 08/09/05 21:46
Tim Roberts wrote
>
> There's nothing wrong with this code. You need to show us the rest of the
> HTML (including the <form> header) and the PHP code that creates the
> response. The problem is almost certainly much later than what you've
> shown us here
I found the solution. Thanks though.
I changed:
<input name="firstname" type="hidden" value="<? echo("$s[firstname]\n");
?>"><? print("$s[firstname]\n"); ?>
TO:
<input name="firstname" type="hidden" value="<?php print
$s['firstname']; ?>"><?php print $s['firstname']; ?>
Navigation:
[Reply to this message]
|