Statt print ausgabe im formular

supser

Erfahrenes Mitglied
Hallo, wenn ich meine daten aus meiner mysql tabelle hohle uns sie ausgebe z.b.:

<html>
<head>
<title>Inhalte ausgeben</title>
</head>
<body>

<?php

$host = ".........";
$user = "............";
$password = "............";
$dbname = ".............";
$tabelle ="tnt";

$dbverbindung = mysql_connect ($host, $user, $password);

$dbanfrage = "SELECT * from $tabelle";
$result = mysql_db_query ($dbname, $dbanfrage, $dbverbindung);

while ($ausgabe = mysql_fetch_array ($result))
{
print ("$ausgabe[a1]<br>");
}

mysql_close ($dbverbindung)


?>

</body>
</html>

zeigt er sie mir auf einer lehren seita an, wie kann ich diese ausgabe wieder in mein html formular holen aus dem sie auch gesendet worden sind ?
Gibt es noch eine möglichkeit die tabellen ids zu listen und aufzurufen ?

Danke 1000 Dank im voraus

Gruss Supser
 
Das ist eigentlich ganz einfach.

Du hast in HTML folgenden Tag für ein Eingabefeld:
PHP:
echo '<input type="text" name="bla">';
Jetzt erweiterst du das um den "value" also:
PHP:
echo '<input type="text" name="bla" value="">';
Jetzt musst du nur noch "value" mit deinen Daten aus der MySQL-Abfrage füllen nämlich so
PHP:
echo '<input type="text" name="bla" value="'.$ausgabe[a1].'">';
und das war es.
 
Zuletzt bearbeitet:
Hallo, danke für die schnelle antwort. Checks aber nich so ganz.

So sieht meine work.php aus die ich per button an die dantenbank sende, wobei a1 a2 u.s.w die textboxenbezeichnungen sind.

<html>
<head>
<title> ---- Daten verarbeiten ----</title>
</head>
<body>

<?php

$host = "000000";
$user = "00000";
$password = "0000";
$dbname = "00000";
$tabelle ="leistungsschein";

$dbverbindung = mysql_connect ($host, $user, $password);

$dbanfrage = "INSERT into $tabelle values ('0', '$Array[a1]', '$Array[a2]', '$Array[a3]', '$Array[a4]', '$Array[a5]', '$Array[a6]', '$Array[a7]', '$Array[a8]', '$Array[a9]', '$Array[a10]', '$Array[a11]', '$Array[a12]', '$Array[a13]', '$Array[a14]', '$Array[a15]', '$Array[a16]', '$Array[a17]', '$Array[a18]', '$Array[a19]', '$Array[a20]', '$Array[a21]', '$Array[a22]', '$Array[a23]', '$Array[a24]', '$Array[a25]', '$Array[a26]', '$Array[a27]', '$Array[a28]', '$Array[a29]', '$Array[a30]', '$Array[a31]', '$Array[a32]', '$Array[a33]', '$Array[a34]', '$Array[a35]', '$Array[a36]', '$Array[a37]', '$Array[a38]', '$Array[a39]')";

if (mysql_db_query ($dbname, $dbanfrage, $dbverbindung)) {
print ("Datenbankeintrag in NWS db war erfolgreich.");
} else {
print ("Es traten Probleme auf.");
}
mysql_close ($dbverbindung);

?>

</body>
</html>

meine Formularfelder sind so:

<td colspan="3"> <input name="Array[a1]" type="text" value="" size="70" row="5"></td>

Gruss supser
 
HTML:
<td colspan="3"> <input name="Array[a1]" type="text" value="" size="70" row="5"></td>
Soweit biste noch gekommen -.- value ist der Standarttext, welcher im Textfeld stehen soll ... da du anscheinend "$ausgabe[a1]" darin ausgeben willst ... somit brauchste nen echo befehl ...

PHP:
<td colspan="3"> <input name="Array[a1]" type="text" value="<?php echo $ausgabe[a1] ?>" size="70" row="5"></td>
 
Wow 1000 Dank aber von wo aus muss ich die z.b. ausge starten damit ssie wieder in meiner tnt.htm angezeigt wird habs jetzt mal so:

$dbverbindung = mysql_connect ($host, $user, $password);

$dbanfrage = "SELECT * from $tabelle";
$result = mysql_db_query ($dbname, $dbanfrage, $dbverbindung);

while ($ausgabe = mysql_fetch_array ($result))
{
echo '<input type="text" name="bla" value="'.$ausgabe[a1].'">';
echo '<input type="text" name="bla" value="'.$ausgabe[a2].'">';
echo '<input type="text" name="bla" value="'.$ausgabe[a3].'">';
echo '<input type="text" name="bla" value="'.$ausgabe[a4].'">';
echo '<input type="text" name="bla" value="'.$ausgabe[a5].'">';
}

mysql_close ($dbverbindung)


?>

er gibt sie auf einer leeren seite aus nicht in meiner tnt.htm

1000 Dank für eine antwort
 
Das "bla" bei "name" musst du natürlich in den jeweiligen Namen des Eingabefeldes ändern damit das funktioniert.

Also wenn der übergebene Wert z.B. den Titel "Array[a1]" haben soll dann muss name="Array[a1]" sein und nicht bla usw.

Ähm wieso eigentlich $Array[a1]?
Ich kann mich täuschen aber haben wir nicht einmal gelernt, dass man Funktionsnamen nicht als Variablennamen benutzt?
 
Zuletzt bearbeitet:
hallo habe ich gemacht :

$dbverbindung = mysql_connect ($host, $user, $password);

$dbanfrage = "SELECT * from $tabelle";
$result = mysql_db_query ($dbname, $dbanfrage, $dbverbindung);

while ($ausgabe = mysql_fetch_array ($result))
{
echo '<input type="text" name="Array[a1]" value="'.$ausgabe[a1].'">';
echo '<input type="text" name="Array[a2]" value="'.$ausgabe[a2].'">';
echo '<input type="text" name="Array[a3]" value="'.$ausgabe[a3].'">';
echo '<input type="text" name="Array[a4]" value="'.$ausgabe[a4].'">';
echo '<input type="text" name="Array[a5]" value="'.$ausgabe[a5].'">';
}

aber es erscheint das ergebniss in einer leeren Seite mit textboxen und nicht in meinem Formular wo ich es hin haben möchte z.b zum weiterbearbeiten.
Von wo aus muss ich den den PHP code einbinden um z.b. mit einem button den datensatz ins formular zu hohlen.

Ich bin Ihnen sehr sehr dankbar haben mich schon ein wenig weiter gebracht Danke
 
Du musst das natürlich schon in deinem Formular machen und nicht extra - logisch oder ;-)

Wenn dein Formular nur aus HTML besteht und nicht aus echo-"Befehlen" in PHP dann musst du natürlich das so einbinden wie es GS-Master geschrieben hat. Aber wichtig eben in deinem Echtformular.

Hier der Quelltext von GS-Master (ungeprüft):
PHP:
<td colspan="3"> <input name="Array[a1]" type="text" value="<?php echo $ausgabe[a1] ?>" size="70" row="5"></td>

Auch ist deine while-Schleife glaube ich fehl am Platz da du ja nur eine Zeile aus deiner SQL-Tabelle ausliest - also die while-Schleife nur einmal durchlaufen wird.

Stattdessen machst du einfach so (LIMIT 1 noch bei der Abfrage einfügen):
PHP:
$dbverbindung = mysql_connect ($host, $user, $password);

$dbanfrage = "SELECT * from $tabelle LIMIT 1";
$result = mysql_db_query ($dbname, $dbanfrage, $dbverbindung);

$ausgabe = mysql_fetch_array ($result);

echo '<input type="text" name="Array[a1]" value="'.$ausgabe[a1].'">';
echo '<input type="text" name="Array[a2]" value="'.$ausgabe[a2].'">';
echo '<input type="text" name="Array[a3]" value="'.$ausgabe[a3].'">';
echo '<input type="text" name="Array[a4]" value="'.$ausgabe[a4].'">';
echo '<input type="text" name="Array[a5]" value="'.$ausgabe[a5].'">'; 


mysql_close ($dbverbindung)

Am besten machst du aus deinem Formular welches du ja ohnehin schon hast eine PHP-Datei und fügst das ganze so ein. Dann rufst du nach der Verarbeitung der Daten einfach dieses Formular wieder auf und füllst die dort vorhandenen Zellen mit dem jeweils richtigen Inhalt.

Ausserdem fällt mir noch auf - du rufst ja nur den ersten Eintrag deiner Tabelle ab ohne zu prüfen ob da auch die richten Daten stehen - hast du dir da schon mal gedanken darüber gemacht. Es gibt in SQL die Möglichkeit den letzten Auto-Index abzufragen - ich hatte da auch mal einen Thread darüber offen - Guckst du hier: http://www.tutorials.de/forum/php/219842-kundenverwaltung-naechster-autoindex-abfragen-mysql.html
Ich hoffe, dass ich mich jetzt so ausgedrückt habe das man es verstehen kann ;)
 
Zuletzt bearbeitet:
Allso bitte jetztt erstmals 100 mal um entschuldigung aber ich sende mal das html dokument mit der frage wo php eingebunden werden soll SORRY is ziemlich lang bitte um Verzeihung:

<html>
<head>
<title>Leistungsschein TNT - - - I N T E R N E T - - -</title>
</head>
<body>
<form action="work.php" method=post>
<div align="center">
<p><font face="Verdana, Arial, Helvetica, sans-serif"><strong><font size="5"><br>
<br>
LEISTUNGSSCHEIN<br>
</font></strong></font></p>
<font face="Verdana, Arial, Helvetica, sans-serif"><strong><font size="5">
</font></strong></font>
<table width="1004">
<tr>
<td width="233"><strong><font color="#000000"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Firma:</font></font></strong></td>
<td width="247"><input name="Array[a1]" type="text" value="<?php echo $ausgabe[a1] ?>" size="40" row="5"></td>
<td width="502" rowspan="4"><div align="center"><img src="tnt_logo.gif" width="157" height="66"></div></td>
</tr>
<tr>
<td><strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">Mitarbeiter</font><font size="2" face="Verdana, Arial, Helvetica, sans-serif">:</font></strong></td>
<td><input name="Array[a2]" type="text" value="" size="40" row="5"></td>
</tr>
<tr>
<td><strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">Von
Datum</font><font size="2" face="Verdana, Arial, Helvetica, sans-serif">:</font></strong></td>
<td><input name="Array[a3]" type="text" value="" size="40" row="5"></td>
</tr>
<tr>
<td><strong><font color="#000000"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Bis
Datum:</font></font></strong></td>
<td><input name="Array[a4]" type="text" value="" size="40" row="5"></td>
</tr>
</table>
<br>
<hr>
<br>
<br>
<table width="98%">
<tr>
<td width="6%" height="22"> <div align="left"></div>
<div align="left"><font size="2"><strong><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif">Nr:</font></strong></font></div></td>
<td width="33%"><strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">T&auml;tigkeiten:</font></strong></td>
<td width="12%"><strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">Montag</font></strong></td>
<td width="12%"><strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">Dienstag</font></strong></td>
<td width="12%"><strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">Mittwoch</font></strong></td>
<td width="12%"><strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">Donnerstag</font></strong></td>
<td width="13%"><strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">Freitag</font></strong></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a5]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a6]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a7]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a8]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a9]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a10]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a11]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a12]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a13]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a14]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a15]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a16]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a17]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a18]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a19]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a20]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a21]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a22]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a23]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a24]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a25]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a26]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a27]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a28]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a29]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a30]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a31]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a32]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td height="27"><font color="#000000">
<input name="Array[a33]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a34]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a35]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a36]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a37]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a38]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a39]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a40]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a41]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a42]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a43]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a44]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a45]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a46]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a47]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a48]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a49]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a50]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a51]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a52]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a53]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a54]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a55]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a56]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a57]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a58]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a59]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a60]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a61]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a62]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a63]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a64]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a65]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a66]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a67]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a68]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a69]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a70]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a71]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a72]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a73]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a74]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a75]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a76]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a77]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a78]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a79]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a80]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a81]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a82]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a83]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a84]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a85]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a86]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a87]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a88]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a89]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a90]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a91]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a92]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a93]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a94]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a95]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a96]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a97]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a98]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a99]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a100]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a101]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a102]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000">
<input name="Array[a103]" type="text" value="" size="8" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a104]" type="text" value="" size="50" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a105]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a106]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a107]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a108]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a109]" type="text" value="" size="15" row="5">
</font></td>
</tr>
</table>
<p><br>
<font size="2"><font color="#000000" face="Verdana, Arial, Helvetica, sans-serif">*
Bitte in den Spalten (Mo. bis Fr.) die Stunden eintragen: Beispiel: f&uuml;r
1 Stunde und 30 Minuten. bitte 1,5 eintragen<br>
* Bitte in der Spalte Nummer ein R + RFC Nummer oder ein P + Projektnummer
eintragen.</font></font><br>
</p>
<hr>
<br>
<br>
<table width="98%">
<tr>
<td width="39%"><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Arbeitsbeginn</strong></font></td>
<td width="12%"><font color="#000000">
<input name="Array[a110]" type="text" value="" size="15" row="5">
</font></td>
<td width="12%"><font color="#000000">
<input name="Array[a111]" type="text" value="" size="15" row="5">
</font></td>
<td width="12%"><font color="#000000">
<input name="Array[a112]" type="text" value="" size="15" row="5">
</font></td>
<td width="12%"><font color="#000000">
<input name="Array[a113]" type="text" value="" size="15" row="5">
</font></td>
<td width="13%"><font color="#000000">
<input name="Array[a114]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Arbeitsende</strong></font></td>
<td><font color="#000000">
<input name="Array[a115]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a116]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a117]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a118]" type="text" value="" size="15" row="5">
</font></td>
<td><font color="#000000">
<input name="Array[a119]" type="text" value="" size="15" row="5">
</font></td>
</tr>
<tr>
<td><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif"><strong>Gesamt
Arbeitszeit </strong></font></td>
<td><font color="#000000">
<input name="Array[a120]" type="text" value="" size="15" row="5">
</font></td>
<td bordercolor="#FFFFFF"><font color="#000000">&nbsp; </font></td>
<td bordercolor="#FFFFFF"><font color="#000000">&nbsp; </font></td>
<td bordercolor="#FFFFFF"><font color="#000000">&nbsp; </font></td>
<td bordercolor="#FFFFFF"><font color="#000000">&nbsp; </font></td>
</tr>
</table>
<p>&nbsp;</p>
<hr>
<p>&nbsp;</p>
<table width="100%">
<tr>
<td width="50%"><div align="center"><strong><font color="#000000">
<input name="Array[a121]" type="password" size="40" row="5">
</font></strong></div></td>
<td><div align="center"><font color="#000000">
<input name="Array[a122]" type="password" size="40" row="5">
</font></div></td>
</tr>
<tr>
<td><div align="center"><font size="2" face="Verdana, Arial, Helvetica, sans-serif"><font color="#000000">
<input name="Array[a123]" type="text" value="Datum: " size="22" row="5">
</font> </font></div></td>
<td><div align="center"><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">
<input name="Array[a124]" type="text" value="Datum: " size="22" row="5">
</font><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
</font></div></td>
</tr>
<tr>
<td><div align="center"><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Best&auml;tigung
NWS</font></strong></div></td>
<td><div align="center"><strong><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Best&auml;tigung
TNT<font color="#000000">&nbsp; </font></font><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">&nbsp;
</font></strong></div></td>
</tr>
</table>
<p>&nbsp;</p>
<hr>
<br>
<br>
<input type=submit name="SUBMIT" value="Daten zur NWS_db senden">
<input name="Submit" type="button" onClick="window.print()

" value="Drucken">
<a href="ausgabe1.php"> cxcbnxbc </a></div>
</form>
</body>
</html>
 
Zurück