Posted by vinnie on 05/29/07 15:47
I have this form:
<form action="http://www.XXXXXXX.com/form.php" method="post"
name="form1" target="_blank" id="form1">
<label>Nome
<input name="<b>name</b>" type="text" maxlength="45" />
</label>
<p>
<label>Last
<input name="last name" type="text" dir="ltr" maxlength="45" />
</label>
</p>
now, i have made this php script just to echo the value in "name" and
"last" but it doesn't work:
<?php
print("$_POST['name']");
print("thanks, see you soon");
?>
what's the error?
Navigation:
[Reply to this message]
|