Hi all
I just started my adventure with php and I’m using Jeremy Allen’s book "Mastering PHP 4.1.
On that book he use method to allocating variables from form, which is not working for me.
for example
[php]<?php print(’<input type=“text” name=“person” value="’ . $person .
‘"size=“15” />’);
[/php]
doesn’t return variable $person in php file directed in
<form action="you_are.php">
I know i can use method
[php]$person = $_GET[‘person’][/php]
which is working perfect for me, but I just wonder why above method is not working for me?
Is that because I’m using php version 5.3.6?
or I have to configure something in server settings?