Hi all,
I am using Apache in WINNT4.0. I don't know why the following two php don't work well.
//First.php
<?
echo "<a href=Second.php?number=100>Second</a>\n";
?>
//Second.php
<?
echo "The number is"."$number";
?>
The variable $number is empty after link second is clicked. However, it do work under win9x and win2000.
Thanks in advance.