<?php
$user = $_GET['id'];
$option = $_GET['opt'];
if($option = "info"){
include('usdata.php');
}elseif($option = "upload"){
require('doupload.php');
die();
}
?>
and it just keep loading usdata.php only , any ideas?
I use both require() and include() fuctions and keep it doing the same.
The links are <a href="folder/?id=sm&opt=nn"></a>
Any help would be gratefull.
Thanks by the way!
Edited by ap_, 09 December 2007 - 04:33 PM.
