wo0zy
Erfahrenes Mitglied
ich hab das mal probiert, und was sollte auch anderes passieren, result is auch leer!!
naja hier is mal das genze script!
naja hier is mal das genze script!
PHP:
<?php
$teilnehmer = "root";
$pass = "";
$host ="localhost";
$database = "woozydb";
$table = "news_wg";
$conn_id = mysql_connect($host,$teilnehmer,$pass);
mysql_select_db($database,$conn_id);
if ($action=="save") {
if ($pw=="pass"){
$datum = time();
$inhalt = $inhalt;
mysql_query("insert into $table (inhalt,datum) VALUES ('$inhalt','$datum')");
}else{ echo "<b>Gib das richtige Passwort ein!!</b>";
}
}
if($action=="neu"){
echo "<form action='news_admin.php' method='post'><table align='center'><input type='hidden' name='action' value='save'<tr>";
echo "<td>nachricht:</td><td><textarea rows=6 cols=25 name='inhalt'></textarea></td></tr>";
echo "<tr><td><input type='hidden' name='datum'>passwort:</td><td><input type='password' name='pw'></td></tr><tr><td colspan='2' align='center'><input type='submit' value='eintragen'></td></tr></table></form>";
}
?>
<p align="center">
<a href="news_admin.php?action=neu">neu</a><br>
<form action="news_admin.php?action=update" method="post">
beitrag nummer: <input type="text" name="zahl" size="2"><br>
<input type="submit" value="update">
</form></p>
<?php
if($action=="update"){
$zahl_neu = $zahl+1;
$query="select * from $table order by $datum desc limit ".$zahl.",".$zahl_neu;
$result=@mysql_query($query,$vk);
while($row=mysql_fetch_array($result)) {
echo $result;
$inhalt= $row['inhalt'];
$inhalt=nl2br($inhalt);
echo "<p align='center'><form action='news_admin.php?action=change' method='post'><textarea rows=6 cols=25 name='inhalt'>".$inhalt."</textarea></form>";
echo "<br><input type='submit' value='ändern'></p>";
}
}
?>