Posted by Adam on 09/12/06 14:32
On Sat, 02 Sep 2006 20:08:30 GMT, Jon Pike wrote:
>if test.php is this file:
>
>
><?php
> $lang = $_POST["lang"];
> print $lang;
>?>
>
>
>
><form method=post action=test.php>
><input type=image src=engFlag.jpg name="lang" value=en>
><input type=image src=fraFlag.jpg name="lang" value=fr>
></form>
>
>
>
>Why won't it print $lang; after having one of the images clicked?
Lack of double quotes?
<form method="post" action="test.php">
<input type="image" src="engFlag.jpg" name="lang" value="en">
<input type="image" src="fraFlag.jpg" name="lang" value="fr">
</form>
... and .. I think you need single quotes inside the parentheses:
$lang = $_POST['lang'];
Adam.
Navigation:
[Reply to this message]
|