- Jan 2, 2006
- 10,455
- 35
- 91
I've been following the php tutorial on Nerd Paradise:
http://www.nerdparadise.com/tech/coding/php/beginners2/
I've got a php page set up with the following php code:
The tutorial says I just need to "add ?a=5&b=8 to the end of the URL" to output "40."
http://www.victorlinphoto.com/phptest.php?a=5&b=8
Uhhh... still shows up as 0.
http://www.nerdparadise.com/tech/coding/php/beginners2/
I've got a php page set up with the following php code:
<p>This is HTML code</p>
<?
echo "<p>";
echo $a * $b;
echo "</p>";
?>
<p>This is HTML code again</p>
The tutorial says I just need to "add ?a=5&b=8 to the end of the URL" to output "40."
http://www.victorlinphoto.com/phptest.php?a=5&b=8
Uhhh... still shows up as 0.
