PHP gelöst Form input Problem ipod

Metzlor

Lt. Commander
Registriert
Juni 2006
Beiträge
1.101
SRY gelöst, es funktioniert, mußte den IPOD nur neustarten.



Hallo,

ich habe eine kleine Internetseite mit javascript, html und php erstellt. Im Firefox läuft diese Problemlos, auf meinem Ipod Touch mit Safari leider nicht.

meine Form:

Code:
<form name="testekarte" action="ausloeser.php" method="post">
Barcode: <input class="Textbox" type="text" name="Barcode" size="9" ><br>
<table border = 1 align="center"> 
<tr>
<td> <input value = "1" type="button" class="Button" onclick="tastatur('1')"></td>
<td> <input value = "2" type="button" class="Button" onclick="tastatur('2')"></td>
<td> <input value = "3"type="button" class="Button" onclick="tastatur('3')"></td>
</tr>
<tr>
<td> <input value = "4" type="button" class="Button" onclick="tastatur('4')"></td>
<td> <input value = "5" type="button" class="Button" onclick="tastatur('5')"></td>
<td> <input value = "6" type="button" class="Button" onclick="tastatur('6')"></td>
</tr>
<tr>
<td> <input value = "7" type="button" class="Button" onclick="tastatur('7')"></td>
<td> <input value = "8" type="button" class="Button" onclick="tastatur('8')"></td>
<td> <input value = "9" type="button" class="Button" onclick="tastatur('9')"></td>
</tr>
<tr>
<td> <input value="C" type = "button" class ="Button" onclick = "tastatur('c')"></td>
<td> <input type="button" value = "0" class="Button" onclick="tastatur('0')"></td>
<td> <input name = "kartetesten" class="Button" type = "submit" value = "OK"></td>
</tr>
</table></form>
tastatur ist eine kleine Javascript funktion die die tasten jeweils in Barcode reinschreibt, dies funktioniert auch problemlos.

und die annahme in php

Code:
if(isset($_POST[Barcode])) {

davor kann ich etwas ausgeben, nur $_POST[Barcode] funktioniert irgendwie nicht, übersehe ich den Fehler. $_POST[Barcode] ist irgendwie leer auf dem IPod.
Es tat auch mal mit dem Safari, hatte dann alerdings s.o. die Tastatur programmiert und seit dem geht es nicht mehr.

Wo liegt mein Fehler.

Danke im Vorraus
Gruß Metzlor
 
Zuletzt bearbeitet:
AW: Form input Problem ipod

Code:
if(isset($_POST["Barcode"])) {

oder

Code:
if(isset($_POST['Barcode'])) {
 
Zurück
Oben