Posted by countach on 05/29/07 16:17
En las nuevas, el vinnie escribiσ:
> 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?
<input name="<b>name</b>"
should be
<input name="name"
Navigation:
[Reply to this message]
|