We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5864352 commit 1974c08Copy full SHA for 1974c08
lecture-plans/php-security/functions.php
@@ -1,3 +1,9 @@
1
<?php
2
echo("functions.php<br />\n");
3
4
+function test1($var1, $var2) {
5
+ echo("$var1, $var2\n");
6
+}
7
+
8
+test1($argv[1], $argv[2], $argv[3]);
9
0 commit comments