Hio leute
Es geht darum ... eine editierbare tabelle anzulegen
so weit so gut hab mir alles aus net gezogen
nur jetzt komm net mehr weite habe es per localhost aufgesetzt.
Aber wenn ich auf speicher Button drücke kommt error 404 .
ist ja logisch weil der net weiß wo er die Daten speicher soll die in die Tabelle eingetragen sind.
also was muss ich coden oder so damit er es auf den mySLQ Server speichert ?
oder geht das anderes ?
hier die tabelle
<?php echo getPage($page); ?>
<div id="page">
<h1>Tabelle</h1>
<form action="process.php" method="POST">
<table id="worksheet">
<colgroup>
<col width="20">
<col width="150">
<col width="150">
<col width="150">
</colgroup>
<tr>
<td class="row_num"><span>1</span></td>
<td><input type="text" name="cell_00"></td>
<td><input type="text" name="cell_01"></td>
<td><input type="text" name="cell_02"></td>
</tr>
<tr>
<td class="row_num"><span>2</span></td>
<td><input type="text" name="cell_10"></td>
<td><input type="text" name="cell_11"></td>
<td><input type="text" name="cell_12"></td>
</tr>
<tr>
<td class="row_num"><span>3</span></td>
<td><input type="text" name="cell_20"></td>
<td><input type="text" name="cell_21"></td>
<td><input type="text" name="cell_22"></td>
</tr>
</table>
<input id="submit_btn" type="submit" value="Speichern">
</form>
</div>
</body>
http://s1.directupload.net/images/140829/3dvxl5v8.png <---- bild
Ich hoffe ihr könnt mir helfen
MFG Lpflasher