blackbird94
Grünschnabel
Hallo Community,
ich habe folgendes Problem: Ich habe 2 Seiten. 1 Formular und eine Seite, die Daten aus dem Formular in eine Access Tabelle schreiben soll.
Das Problem ist ich habe keine Ahnung wie ich die Daten aus dem Formular auslese und dann unter VALUES=() eingeben soll. (per PHP). Hier mein bisheriger Fortschritt:
Formular:
PHP-Seite die, die Daten aus dem Formular in die Access-Tabelle einfügen soll:
Ich hoffe ihr könnt mir helfen. Danke für Bemühen!
ich habe folgendes Problem: Ich habe 2 Seiten. 1 Formular und eine Seite, die Daten aus dem Formular in eine Access Tabelle schreiben soll.
Das Problem ist ich habe keine Ahnung wie ich die Daten aus dem Formular auslese und dann unter VALUES=() eingeben soll. (per PHP). Hier mein bisheriger Fortschritt:
Formular:
Code:
<form action="insert_article.php" method="POST" enctype="multipart/form-data">
<table border="1">
<tr>
<td>Berichtkategorie:</td>
<td>
<select name="fkategorie">
<option>Exkursionen</option>
<option>Projektwochen</option>
<option>Sonstiges</option>
<option>Wettbewerbe</option>
<option>Kulturelles</option>
</select>
</td>
</tr>
<tr>
<td>Berichtart:</td>
<td>
<select name="fart">
<option>Berichte</option>
<option>Projekte</option>
</select>
</td>
</tr>
<tr>
<td>Titel:</td>
<td><input type="text" name="ftitel" size="20" maxlength="100" /></td>
</tr>
<tr>
<td>Inhalt:</td>
<td><input type="text" name="finhalt" size="20" /></td>
</tr>
<tr>
<td>Schuljahr:</td>
<td><input type="text" name="fjahr" size="20" /></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="fsubmit" value="Artikel hinzufügen" /></td>
</tr>
</table>
</form>
PHP-Seite die, die Daten aus dem Formular in die Access-Tabelle einfügen soll:
Code:
<?php
$conn=odbc_connect('Berichte','','');
if (!$conn)
{exit("Connection Failed: " . $conn);}
$sql="INSERT into tblBerichte(BKID, BAID, titel, inhalt, schuljahr) VALUES()";
$rs=odbc_exec($conn,$sql);
?>
Ich hoffe ihr könnt mir helfen. Danke für Bemühen!