Hello
I am starting out learning this php. I have made a page called
into.html
which has this in it:
[php]
First Name:
[/php]
The PHP page ActionScript.php has this in it
[php]<?php
print “Your first name is $name”;
?>[/php]
however when i run the script all i am getting on the page is:
Your first name is
the name variable that i type in is not showing?
can anyone help?
thanks