<?php
$job = $_POST['job'];
$kategorie = $_POST['kategorie'];
$nl = $_POST['nl'];
$stufe = $_POST['stufe'];
$kontakt = $_POST['kontakt'];
$link1 = $_POST['link1'];
if (isset($job))
{
$sql = "INSERT anzeigen (job,kategorie,niederlassung,stufe,kontakt,link1) VALUES ('$job','$kategorie','$nl','$stufe','$kontakt','$link1')";
}
?>
<html>
<head>
<title>Das erste PHP-Formular</title>
</head>
<body>
<tr>
<td>
<h1>Formular für neue Stellenanzeigen: </h1>
<form action="" method="post">
<fieldset>
<legend>Bitte tragen Sie ihre neue Stelle ein </legend><br>
<table>
<tr>
<td><label for="job">Job:</label></td>
<td><input type="text" id="job" name="job" value="Der Stellentitel"></td>
</tr>
<tr>
<td><label for="kategorie">Kategorie:</label></td>
<td><input type="text" id="kategorie" name="kategorie" value="Die Jobkategorie"></td>
</tr>
<tr>
<td><label for="niederlassung">Niederlassung: </label></td>
<td><input type="text" id="nl" name="niederlassung" value="Die Niederlassung"></td>
</tr>
<tr>
<td><label for="stufe">Stufe:</label></td>
<td><input type="text" id="stufe" name="stufe" value="Die Entwicklungsstufe"></td>
</tr>
<tr>
<td><label for="kontakt">Kontakt:</label></td>
<td><input type="text" id="Kontakt" name="kontakt" value="Der Ansprechpartner"></td>
</tr>
<tr>
<td>Link im www: </td>
<td><input type="text" id="link" name="link" value="http://..."></td>
</tr>
<tr>
<td><label for="auswahl">Link im www </label></td>
<td><input type="checkbox" id="auswahl" name="Auswahl"></td>
<td><input type="submit" value="Go!"></td>
</tr>
</table>
<input type="submit" value="Go!">
</fieldset>
</form>
<?php
$sql = "SELECT * FROM anzeigen ORDER
BY id DESC";
$ausgabe=mysql_query($sql);
while ($anzeige = mysql_fetch_object ($ausgabe))
{
echo "$anzeige->job";
?></td>
<td><?php
echo "$anzeige->kategorie";
?></td>
<td><?php
echo "$anzeige->niederlassung";
?></td>
<td><?php
echo "$anzeige->stufe";
?></td>
<td><?php
echo "$anzeige->kontakt";
?></td>
<td><?php
echo "$anzeige->link";
}
?></td>
</tr>
</body>
</html>