MySQL interesse |
|
Hallo allemaal
Ik heb een forum gemaakt, maar nu wil ik replies op topics kunnen verwijderen.
Heb deze code voor de replies:
$replies = "<tr class='tblin'><td class='btext'><b>".$poster."</b></a> ".$dt."</td><td class='btext'><a href='viewtopic.php?topic='.$topicid.'&post='.$postid.'&action=del'>".$action."</a></td></tr><tr class='tblin'><td class='btext'>".$message."</td><br>";
$replies = "<tr class='tblin'><td class='btext'><b>".$poster."</b></a> ".$dt."</td><td class='btext'><a href='viewtopic.php?topic='.$topicid.'&post='.$postid.'&action=del'>".$action."</a></td></tr><tr class='tblin'><td class='btext'>".$message."</td><br>";
en dit om het te 'getten'.
$action=$_GET['action'];
if($action=="del"){
mysql_query("DELETE FROM topicposts WHERE `postid`='$postid'");
echo "wtf wtf?";
}
$action=$_GET['action']; if($action=="del"){ mysql_query("DELETE FROM topicposts WHERE `postid`='$postid'"); }
Maar nu gebeurt er 1: niks als ik op de link druk. En ten tweede als ik over de link hover, krijg ik ook niks te zien, krijg ik alleen te zien:
viewtopic.php?topic=
dat is alles
|