From a html page menu I need to pass 2 variables.
<a
href="signup.ph p?var1=list-PINSS.php&var2= blurb-PINSS.php"><h3> Padre
Island National Sea Shore</h3></a><br>
These go to a php web page and are used thusly.
<?php include ($_SERVER["var2"]); ?//this is line 3
<?php include ($_SERVER["var1"]); ?// line 5
I am getting these error:
Notice: Undefined index: var2 in
/var/www/vhosts/texasflyfishers .org/httpdocs/signup.php on line 3
Warning: main(): Failed opening '' for inclusion
(include_path=' .:/usr/share/pear') in
/var/www/vhosts/texasflyfishers .org/httpdocs/signup.php on line 3
Notice: Undefined index: var1 in
/var/www/vhosts/texasflyfishers .org/httpdocs/signup.php on line 5
Warning: main(): Failed opening '' for inclusion
(include_path=' .:/usr/share/pear') in
/var/www/vhosts/texasflyfishers .org/httpdocs/signup.php on line 5
What am I doing wrong?
TIA
Dave
<a
href="signup.ph p?var1=list-PINSS.php&var2= blurb-PINSS.php"><h3> Padre
Island National Sea Shore</h3></a><br>
These go to a php web page and are used thusly.
<?php include ($_SERVER["var2"]); ?//this is line 3
<?php include ($_SERVER["var1"]); ?// line 5
I am getting these error:
Notice: Undefined index: var2 in
/var/www/vhosts/texasflyfishers .org/httpdocs/signup.php on line 3
Warning: main(): Failed opening '' for inclusion
(include_path=' .:/usr/share/pear') in
/var/www/vhosts/texasflyfishers .org/httpdocs/signup.php on line 3
Notice: Undefined index: var1 in
/var/www/vhosts/texasflyfishers .org/httpdocs/signup.php on line 5
Warning: main(): Failed opening '' for inclusion
(include_path=' .:/usr/share/pear') in
/var/www/vhosts/texasflyfishers .org/httpdocs/signup.php on line 5
What am I doing wrong?
TIA
Dave
Comment