Voting

: one plus three?
(Example: nine)

The Note You're Voting On

hamboy75 at example dot com
11 years ago
To use $_GET so you dont need to support both if it could be used from command line and from web browser.

foreach ($argv as $arg) {
$e=explode("=",$arg);
if(count($e)==2)
$_GET[$e[0]]=$e[1];
else
$_GET[$e[0]]=0;
}

<< Back to user notes page

To Top