Jack E. Wasserstein wrote:
There must be something obvious that I am missing but I cant get the php
form handler with the script below to display the vairables. The form which
sends this data has the correct field names. I am also using the get action,
so I can see the variables and values so I know that they are being passed
correctly to the form. On submit, the form below displays as follows below.

<?php

print " the referring doctor is $referringdr .<br>\n";
...

Better try to use superglobals like $_GET, $_POST or $_REQUEST.


Eg.:
<?
print " the referring doctor is ".$_GET['referringdr'].".<br>\n";
// etc...
?>


-- Pavel a.k.a. Papi

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to