Update Probleme

Dies ist im moment leider gar nicht der Fall... Wenn ich jetzt in ein Feld 2 schreibe, wird in allen Feldern der selben Spalte auch der Wert 2 geschrieben...
 
Wie meinst Du das?
Kann man sich das ganze irgendwo online ansehen?
Es werden doch beim Update nur die Werte übermittelt, die in der gleichen Zeile stehen, ...
Und die gehören doch wohl auch alle zu dem selben Datensatz, oder?

redlama
 
Hab das ganze fertig gekriegt und es sieht nun so aus:

PHP:
<html>

<head>

<title>outpsgeneralt.php</title>

<script language="javascript" src="scripts/child.js"></script>

<script language="javascript" src="scripts/convert.js"></script>

</head>

<body background="images/bgpanel.gif">



<?php

$table ="psgeneralt";

include("includes/inclconnect.php");

$recsel = "SELECT * FROM $table ORDER BY TaxeID ASC;";

include("includes/inclquery_output.php");



print ("<table border = 5 style=font-size:8pt style=font-family:'Arial'>

<tr>

<th></th>

<th>Code</th>

<th>Beschreibung</th>

<th>EmployeeRate</th>

<th>EmployerRate</th>

<th>FixAmountE</th>

<th>FixAmountR</th>

<th>DebitAccount</th>

<th>CreditAccount</th>

<th>MinAmount</th>

<th>MaxAmount</th>

<th>Von:</th>

<th>Bis:</th>

<th>WageType</th>

<th>Von:</th>

<th>Bis:</th>

<th>Exclusive</th>

<th></th>

<th></th>

<th>Bearbeiten</th>

</tr>");

while ($ausgabe = mysql_fetch_array ($result))//

{

print ("<form action=\"work_psgeneralt.php\" method=\"post\">

<tr>

<td><input type=\"hidden\" name=\"TaxeID\" size=\"1\" value=\"$ausgabe[TaxeID]\"/></td>

<td><input type=\"text\" name=\"code\" size=\"6\" value=\"$ausgabe[ Code ]\"/></td>

<td><input type=\"text\" name=\"description\" size=\"20\" value=\"$ausgabe[Description]\"/></td>

<td><input type=\"text\" name=\"employeerate\" size=\"8\" value=\"$ausgabe[EmployeeRate]\"/></td>

<td><input type=\"text\" name=\"employerrate\" size=\"8\" value=\"$ausgabe[EmployerRate]\"/></td>

<td><input type=\"text\" name=\"fixamounte\" size=\"9\" value=\"$ausgabe[FixAmountE]\"/></td>

<td><input type=\"text\" name=\"fixamountr\" size=\"9\" value=\"$ausgabe[FixAmountR]\"/></td>

<td><input type=\"text\" name=\"debitaccount\" size=\"10\" value=\"$ausgabe[DebitAccount]\"/></td>

<td><input type=\"text\" name=\"creditaccount\" size=\"10\" value=\"$ausgabe[CreditAccount]\"/></td>

<td><input type=\"text\" name=\"minamount\" size=\"10\" value=\"$ausgabe[MinAmount]\"/></td>

<td><input type=\"text\" name=\"maxamount\" size=\"10\" value=\"$ausgabe[MaxAmount]\"/></td>

<td><input type=\"text\" name=\"fromdate\" size=\"8\" value=\"$ausgabe[FromDate]\"/></td>

<td><input type=\"text\" name=\"todate\" size=\"8\" value=\"$ausgabe[ToDate]\"/></td>

<td><input type=\"text\" name=\"wagetype\" size=\"2\" value=\"$ausgabe[WageType]\"/></td>

<td><input type=\"text\" name=\"fromage\" size=\"2\" value=\"$ausgabe[FromAge]\"/></td>

<td><input type=\"text\" name=\"toage\" size=\"2\" value=\"$ausgabe[ToAge]\"/></td>

<td><input type=\"text\" name=\"exclusive\" size=\"1\" value=\"$ausgabe[Exclusive]\"/></td>

<td><input type=\"hidden\" name=\"changed\" size=\"6\" value=\"$ausgabe[Changed]\"/></td>

<td><input type=\"hidden\" name=\"changer\" size=\"20\" value=\"$ausgabe[Changer]\"/></td>

<td><input type=\"submit\" name=\"SUBMIT\" value=\"&auml;ndern\"></td>

</tr>

</form>

");

}

include("includes/incldisconnect.php");

print ("<form action=\"work_psgeneralt.php\" method=\"post\">

<tr>

<td><input type=\"hidden\" name=\"TaxeID\" size=\"1\" value=\"0\"/></td>

<td><input type=\"text\" name=\"code\" size=\"6\" /></td>

<td><input type=\"text\" name=\"description\" size=\"20\" /></td>

<td><input type=\"text\" name=\"employeerate\" size=\"6\" /></td>

<td><input type=\"text\" name=\"employerrate\" size=\"6\" /></td>

<td><input type=\"text\" name=\"fixamounte\" size=\"6\" /></td>

<td><input type=\"text\" name=\"fixamountr\" size=\"6\" /></td>

<td><input type=\"text\" name=\"debitaccount\" size=\"10\" /></td>

<td><input type=\"text\" name=\"creditaccount\" size=\"10\" /></td>

<td><input type=\"text\" name=\"minamount\" size=\"10\" /></td>

<td><input type=\"text\" name=\"maxamount\" size=\"10\" /></td>

<td><input type=\"text\" name=\"fromdate\" size=\"8\" /></td>

<td><input type=\"text\" name=\"todate\" size=\"8\" /></td>

<td><input type=\"text\" name=\"wagetype\" size=\"2\" /></td>

<td><input type=\"text\" name=\"fromage\" size=\"2\" /></td>

<td><input type=\"text\" name=\"toage\" size=\"2\" /></td>

<td><input type=\"text\" name=\"exclusive\" size=\"1\" /></td>

<td><input type=\"hidden\" name=\"changed\" size=\"6\" /></td>

<td><input type=\"hidden\" name=\"changer\" size=\"20\" /></td>

<td><input type=\"submit\" name=\"SUBMIT\" value=\"Neu\"></td>

</tr>

</form>

</table>");

//<td><input readonly name=\"code\" size=\"6\" value=\"ALV\"/></td>

?>

</body>

</style>

</html>

Danke für eure Hilfe!
 
Zurück