I have one code , when execute this code i let do other thing , for example :
<?php
if ($ending=="ok")
{
$insert_end="ok";
}
if ($insert_end=="ok")
{
print "ok";
}
?>
But if i go the url and put for example :
http://www.domain.com/index.php?insert_end=ok
Execute the code and i don´t want this be possible because if some people know this can execute the code , it´s possible no let execute the code when put in url
Thank´s Regards
$insert_end = $_GET['insert_end']if you don't want the user to be able to set it.