Hello
I've got those files on my serv (for example)
001.html
002.html
main.html
index.php
#---------index.php content----------#
$action=getenv(query_string);
if ($action == '"') { include ("main.html"); }
else { include ($action.".html"); }
#---------index.php content end----------#
After I run index.php?001 there's an error in line 3.
How to deal with?
Thanks