Which of these code will be faster?
$temp = $_REQUEST[\'s\'];
or
if (isset($_GET[\'s\'])) { $temp = $_GET[\'s\']; } else
Use REQUEST. Nobody cares about the speed of such a simple operation, and it's much cleaner code.