Hi,
I am new to PHP and I can't seem to get this to work. Any ideas? $Name is not displaying in TEST1.PHP but everything else is.
TEST1.HTM
<html><head><title>Test 1</title></head><body>
<form method="get" action="test1.php">Name:
<input type="text" size="20" maxlength="32" name="Name" />
<input type="submit" value="Send" />
</form></body></html>
TEST1.PHP
<html><head><title></title></head><body>
This is a test<br />
<script language="php">
Print "Begin"."<br>";
Print $Name."<br>";
Print "End";
</script>
</body></html>
I am new to PHP and I can't seem to get this to work. Any ideas? $Name is not displaying in TEST1.PHP but everything else is.
TEST1.HTM
<html><head><title>Test 1</title></head><body>
<form method="get" action="test1.php">Name:
<input type="text" size="20" maxlength="32" name="Name" />
<input type="submit" value="Send" />
</form></body></html>
TEST1.PHP
<html><head><title></title></head><body>
This is a test<br />
<script language="php">
Print "Begin"."<br>";
Print $Name."<br>";
Print "End";
</script>
</body></html>