Voting

: min(one, one)?
(Example: nine)

The Note You're Voting On

OverFlow636 at gmail dot com
17 years ago
I needed this, you proly wont tho.
puts the exicution args into $_GET
<?php
if ($argv) {
    foreach (
$argv as $k=>$v)
    {
        if (
$k==0) continue;
       
$it = explode("=",$argv[$i]);
        if (isset(
$it[1])) $_GET[$it[0]] = $it[1];
    }
}
?>

<< Back to user notes page

To Top