multiple image buttons in php script
Johan
23/12/2005 18:31:00Ik heb het vlgende scriptje (als vb)
test.php
Hoe kan ik in het scrip achterhalen of op image1 of 2 is geklikt.
Ik heb geprobeerd met
if(!empty($_POST)) {
if($_POST['picture1']) {
// do action 1
} else if($_POST['picture2']) {
// do action 2
}
}
maar dit blijkt helaas niet te werken. Iemand een idee.
Hoe kan ik de image buttons in hetzelfde script afhandelen.
alvast bedankt
Johan
test.php
Code (php)
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
<?php
<form name="myform" action="test.php" method="POST">
<input type="image" src="images/pic1.gif" value="picture1" name="image1">
<input type="image" src="images/pic2.gif" value="picture2" name="image2">
</form>
?>
<form name="myform" action="test.php" method="POST">
<input type="image" src="images/pic1.gif" value="picture1" name="image1">
<input type="image" src="images/pic2.gif" value="picture2" name="image2">
</form>
?>
Hoe kan ik in het scrip achterhalen of op image1 of 2 is geklikt.
Ik heb geprobeerd met
if(!empty($_POST)) {
if($_POST['picture1']) {
// do action 1
} else if($_POST['picture2']) {
// do action 2
}
}
maar dit blijkt helaas niet te werken. Iemand een idee.
Hoe kan ik de image buttons in hetzelfde script afhandelen.
alvast bedankt
Johan
PHP hulp
17/11/2024 08:29:40Johan
23/12/2005 18:34:00Probeer gewoon verschillende dingen. Dat is php-en, dat is proggrameren. Gewoon steeds proberen. En pasd na twee uur klooien het aan anderen vragen.