Lid |
|
Hallo,
ik heb een functie geschreven waarbij dit de code is
function newtopic ($id) {
if (isset($_POST['submit']))
{
$title = $_POST['title'];
$content = $_POST['content'];
mysql_query("INSERT INTO forum_topics (title,content,fid)
VALUES ('".$title."',
'".$content."',
'".$id."')");
}
}
function newtopic ($id) { if (isset($_POST['submit'])) { $title = $_POST['title']; $content = $_POST['content']; mysql_query("INSERT INTO forum_topics (title,content,fid) VALUES ('".$title."', '".$content."', '".$id."')"); } }
Deze wordt in mijn pagina als volgt opgeroepen
$this->newtopic ($_GET['id']);
$this->newtopic ($_GET['id']);
en mijn link is als volgt
Citaat: index.php?mod=forum&act=new&id=1
Nu gaat alles mooi in mijn database behalve mijn fid niet, en ja dit is een kolom in mijn db:)
|