xxreenaxx1 Posted October 28, 2010 Share Posted October 28, 2010 if(isset($_GET[source])) { highlight_file(__FILE__); }else{ what does this mean. i know its something to do with file.. Link to comment https://forums.phpfreaks.com/topic/217128-can-someone-please-help-me-with-few-definition/ Share on other sites More sharing options...
Mchl Posted October 28, 2010 Share Posted October 28, 2010 http://www.php.net/manual/en/function.isset.php http://www.php.net/manual/en/reserved.variables.get.php http://www.php.net/manual/en/function.highlight-file.php http://www.php.net/manual/en/language.constants.predefined.php If the url variable 'source' is set display the source if current file Link to comment https://forums.phpfreaks.com/topic/217128-can-someone-please-help-me-with-few-definition/#findComment-1127714 Share on other sites More sharing options...
Andy-H Posted October 28, 2010 Share Posted October 28, 2010 if(isset($_GET[source])) { highlight_file(__FILE__); }else{ what does this mean. i know its something to do with file.. Also associative array keys should be quoted as strings. $_GET['source']; Link to comment https://forums.phpfreaks.com/topic/217128-can-someone-please-help-me-with-few-definition/#findComment-1127717 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.