Merge branch 'development'
[NeonServV5.git] / scripts / example.php.txt
1 <?php
2 //example script
3 //bind it with:
4 //  +bind example extscript php scripts/example.php.txt $n $1 $2 $3 %1+
5
6 echo "Hello ".$argv[1].", this is an external PHP Script :)\n";
7 echo "Your parameters:\n";
8 for($i = 2; $i < count($argv); $i++) {
9     echo"  ".$argv[$i];
10 }
11 ?>