Php不能接受变量?
<html>
<form>
Please type your name here:<br>
<input type=text name=username><br><br>
<input type=submit value="submit data">
</form>
<br><br>
you typed:
<?php
echo($username);
echo("hello");
?>
</html>
上述代码在WIN2000下正常运行,但是在REDHAT8+PHP4下echo($username)无效,echo("hello")正常。
为什么呢?百思不得其解,请帮忙!