Geen actie na klikken op knop in formulier
dit is de regel waar de fout zou moeten zitten:
Code (php)
1
2
3
2
3
<?php
<td width='30%'><center><VALIGN=MIDDLE <form method=post action=creations-producten_bestel.php?id=$product->nummerp> <input name=aantal value=250 size=3> <input type=submit value=Bestel ></form></td>
?>
<td width='30%'><center><VALIGN=MIDDLE <form method=post action=creations-producten_bestel.php?id=$product->nummerp> <input name=aantal value=250 size=3> <input type=submit value=Bestel ></form></td>
?>
en anders heb je hier misschien nog wat aan?
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
print ('<table width=100% border=1>');
while ($product = mysql_fetch_object($result))
{
print("
<tr>
<td width='20%'><center>$product->productnaam</td>
<td width='15%'><center>$product->formaat</td>
<td width='20%'><center>$product->prijspop</td>
<td width='15%'><center>$product->prijsp</td>
<td width='30%'><center><VALIGN=MIDDLE<form method=post action=creations-producten_bestel.php?id=$product->nummerp><input name=aantal value=250 size=3> <input type=submit value=Bestel ></form></td>
</tr>
");
}
print ('</table>');
?>
print ('<table width=100% border=1>');
while ($product = mysql_fetch_object($result))
{
print("
<tr>
<td width='20%'><center>$product->productnaam</td>
<td width='15%'><center>$product->formaat</td>
<td width='20%'><center>$product->prijspop</td>
<td width='15%'><center>$product->prijsp</td>
<td width='30%'><center><VALIGN=MIDDLE<form method=post action=creations-producten_bestel.php?id=$product->nummerp><input name=aantal value=250 size=3> <input type=submit value=Bestel ></form></td>
</tr>
");
}
print ('</table>');
?>
Gewijzigd op 06/04/2005 20:53:00 door Koz T
Ties:
Kan dit wel? '<VALIGN=middle <form method....' lijkt mij niet kunnen....
Maar hoe zou ik dat formulier dan verticaal kunnen centreren in de cel?
hier je formulier
</td>
Elwin (en wel de beste optie)
Elwin:
En natuurlijk is CSS ook een optie.
Elwin (en wel de beste optie)
Elwin (en wel de beste optie)
Offtopic:
PHPFreakz.nl schreef op 12.10.2004 12:39 gelezen bij jouw info. Mooi stukje....
[/OffTopic]
Allemaal bedankt, het werkt prima zo :)