I got some great tips from Frederick on my thread http://www.phpbuilder.com/board/showthread.php?s=&threadid=10276603 Thank You!!
Now I just wonder... I use Form action: ".$_SERVER["PHP_SELF"]." and it gets redirected to the page edit.php. And now I want to get it redirected to edit.php?newsId=$row->newsId\
the code looks like this on that point right now:
$sql = mysql_query("SELECT * FROM news WHERE newsId=$newsId") or die (mysql_error());
$row = mysql_fetch_array($sql);
echo "<form action=\"".$_SERVER["PHP_SELF"]."\" method=\"post\">\n";
Any help is highly appreciated. 🙂