Dear all,
My problem of not getting out values out of form variables is solved..
2 things had to be done:
1) Install the windows service pack 1 because there are some bugs in Windows
xp which hampers the php code...
2) The register globals should be on in the php.ini...which I had done
without i
On Fri, 2003-02-14 at 22:52, Mihir Dhond wrote:
>
> First Name:
> Last Name:
>
>
>
> code in welcome.php:
>
> echo( "Welcome to my Website, $firstname $lastname!" );
> ?>
Change that to
echo "Welcome to my website, " . $_GET['firstname'] . " " .
$_GET['lastname'] . "!";
The re
I have the latest version of PHP 4.3.0-win32 (the latest stable version) and
version 1.3.27 of Apache installed. I have a windows XP operating system The
normal php scripts are working fine but when it comes to pulling out
variable values out of a form, it just doesn't work..I worked very hard to
g