Code: Select all
if ($fid == ''){
//show the different forums
} elseif ($fid != '' && act =='0'){
//show the posts in the selected forum
}
Moderator: General Moderators
Code: Select all
if ($fid == ''){
//show the different forums
} elseif ($fid != '' && act =='0'){
//show the posts in the selected forum
}
Code: Select all
echo $fid;
echo $acct;Code: Select all
error_reporting(E_ALL);
ini_set('display_errors', '1');http://php.net/manual/en/security.globals.phpbraatenj wrote:Ahh, I thought that the variables that were passed through the links where automagically recognized with their corresponding name, didn't realize I had to $_GET them first