Hallo !
Den nachfolgenden Code habe ich in einer function.php die ich include.
function termin_eintrag() {
if (!$los) {
echo "<form method='POST' action='$SERVER[PHP_SELF]'>
<table align='center' cellpadding='3' cellspacing='0' style='border:1px solid black;'>
<tr>
<td colspan='2' style='border-bottom:1px solid black;'><h3>Termine</h3></td>
</tr>
<tr>
<td>Header</td>
<td><input type='text' name='header' size='30'></input></td>
</tr>
<tr>
<td>Datum</td>
<td><input type='text' name='datum' size='20'> TT.MM.JJJJ</input></td>
</tr>
<tr>
<td>Uhrzeit</td>
<td><input type='text' name='zeit' size='10'> hh:mm</input></td>
</tr>
<tr>
<td valign='top'>Text</td>
<td><textarea name='text' cols='35' rows='5' style='overflow:auto;'></textarea></td>
</tr>
<tr>
<td colspan='2' style='border-top:1px solid black;'> </td>
</tr>
<tr>
<td align='right'><input type='reset' value='Löschen'></input></td>
<td align='left'><input type='submit' name='los' value='Eintragen'></input></td>
</tr>
</table></form>";
}
else
{
list($tag,$monat,$jahr)=explode(".",$datum);
list($stunde,$minute)=explode(":",$zeit);
$date=mktime($stunde,$minute,0,$monat,$tag,$jahr);
include 'dblogin.php';
mysql_query("INSERT INTO termine (header,datum_zeit,text) VALUES ('$header','$date','$text')");
}
}
Warum funktioniert das nicht ?
Den nachfolgenden Code habe ich in einer function.php die ich include.
function termin_eintrag() {
if (!$los) {
echo "<form method='POST' action='$SERVER[PHP_SELF]'>
<table align='center' cellpadding='3' cellspacing='0' style='border:1px solid black;'>
<tr>
<td colspan='2' style='border-bottom:1px solid black;'><h3>Termine</h3></td>
</tr>
<tr>
<td>Header</td>
<td><input type='text' name='header' size='30'></input></td>
</tr>
<tr>
<td>Datum</td>
<td><input type='text' name='datum' size='20'> TT.MM.JJJJ</input></td>
</tr>
<tr>
<td>Uhrzeit</td>
<td><input type='text' name='zeit' size='10'> hh:mm</input></td>
</tr>
<tr>
<td valign='top'>Text</td>
<td><textarea name='text' cols='35' rows='5' style='overflow:auto;'></textarea></td>
</tr>
<tr>
<td colspan='2' style='border-top:1px solid black;'> </td>
</tr>
<tr>
<td align='right'><input type='reset' value='Löschen'></input></td>
<td align='left'><input type='submit' name='los' value='Eintragen'></input></td>
</tr>
</table></form>";
}
else
{
list($tag,$monat,$jahr)=explode(".",$datum);
list($stunde,$minute)=explode(":",$zeit);
$date=mktime($stunde,$minute,0,$monat,$tag,$jahr);
include 'dblogin.php';
mysql_query("INSERT INTO termine (header,datum_zeit,text) VALUES ('$header','$date','$text')");
}
}
Warum funktioniert das nicht ?
Kommentar