Any request(ie.action=del) other then(action=file,action=index) should shows file not found.
How to do that.. here is my code..
switch ($_GET['action'])
{
case "file":
checkfile();
break;
default:
index();
break;
}
if u use session , do u have to start session in every function(ie.index()) as inside this function there will be html code.
Or just session start at the begining of php file ?
thanks