>Thanks pepole.

>I've tried but still does not work.

>when I put the varaibles name between ' '

>I found this error:
>Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or
>`T_NUM_STRING'.

>I typed in this way

>**** print "<INPUT TYPE='hidden' NAME='User_name'
>VALUE='$_POST[UserName]'>"; ****

This is pre register_global concerns...
try ..
print "<INPUT TYPE='hidden' NAME='User_name' VALUE='{$_POST[UserName]}'>;
or
print "<INPUT TYPE=\"hidden\" NAME=\"User_name\" VALUE=\"{$_POST[UserName]}
\">;
for a little better HTML.

HTH
Jeff

_________________________________________________________________
Use MSN Messenger to send music and pics to your friends
http://www.msn.co.uk/messenger

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to