I get a project and i see a piece of code as follows:
<?php
$orderby=$_REQUEST['orderby'];
if(strpos($orderby,'d')===true){
echo "exists";
}else{
echo "not ";
}?>
In any case , i input 'd' or others parameters the page always returning 'not'. so, how to input correct parameter make the page returning 'exists'?