Guten Abend
Wie schreibe ich den Ausgewählten Wert in die Mysql Tabelle?:
Wie schreibe ich den Ausgewählten Wert in die Mysql Tabelle?:
PHP:
//Leeres Formular
if (empty($_GET[querytype]) && !empty($_POST)) {
$sql = "INSERT INTO $table SET
TITLE = '$_POST[title]',
SUMMARY = '$_POST[summary]',
CAT = '$_POST[cat]',
CONTENT = '$_POST[content]'";
$query = @mysql_query($sql);
}
PHP:
<!-- Formular, insert/update -->
<form name="form1" method="post" action="dbinsert.php?querytype=<?php echo $querytype; ?>&id=<?php echo $_GET[id]; ?>">
<p>Title
<input type="text" name="title" size="50" value="<?php echo $row[TITLE]; ?>">
<br>
Summary
<input type="text" name="summary" size="50" value="<?php echo $row[SUMMARY]; ?>">
<br>
Content
<textarea name="content" cols="60" rows="15"><?php echo $row[CONTENT]; ?></textarea>
Categry
<select name="sprachen"><?php
$SQL = "SELECT * from $cat";
$result = mySQL_query( $SQL );
while( $row = mySQL_fetch_array( $result ) ) {
echo '<option>' . $row ['CAT'] . '</option>'; } ?></select>
</p>
<p>
<input type="submit" name="Submit" value="Submit">
</p>
<p>
<input type="reset" value="Zurücksetzen" />
</p>
</form>