Ik weet niet of ik hier goed zit, omdat ik ook precies weet waar het probleem zit:
Ik weet niet waar het mis gaat, ik heb al gekeken via de W3 validator of alles keurig is (weet niet of het dus slecht gescript is
) en dat was zo. Uiteindelijk weet ik dus niet of het een HTML probleem is, waarover IE niet moeilijk over doet (fout in IE, omdat hij anders het zelfde moet doen als FF) of een fout in FF is.
Kan iemand mij helpen hiermee?
- HTML
- FireFox
- Internet Explorer
Ik weet niet waar het mis gaat, ik heb al gekeken via de W3 validator of alles keurig is (weet niet of het dus slecht gescript is
Kan iemand mij helpen hiermee?
HTML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Admin - Common</title> </head> <body> What Miniature car do you want to add:<br /> <form id="form1" name="form1" method="post" action="index.php?option=miniature&action=add&function=realyadd"> <label> Driver <select name="driver"> <option value='1'>No driver, </option><option value='3'>Verstappen, Jaap</option> </select> <br /> Class <select name="class"> <option value='2'>F1</option> </select> <br /> Brand <select name="brand"> <option value='2'>Arrows2</option> </select> <br /> Manufactor <select name="producer"> <option value='8'>Exoto</option><option value='4'>Hotweels</option><option value='5'>Onyx</option><option value='7'>Replicars</option><option value='6'>Spark</option><option value='9'>test2</option> </select> <br /> Scale <select name="scale"> <option value='4'>1:18</option><option value='5'>1:43</option> </select> <br /> Bought at<select name="boughtat"> <option value='3'>Marktplaats</option> </select> <input type="submit" name="add" value="Submit" /> </label> </form> <br /><br /><a href="index.php?option=miniature">Go back</a></body> </html> |