Can you please advise what to use that works both with GET and POST to print results.
I overwrote the code you helped me with. I will want to schedule more time later this week if you time as well.
I overwrote the code you helped me with. I will want to schedule more time later this week if you time as well.
$_REQUEST will work with either get or post
Thank you!!!
One more question....
I'd like this to print Sire: siresname
Currently it prints siresname
<?php echo((isset($_REQUEST["sire"])?$_REQUEST["sire"]:"")); ?>
<?php
echo(isset($_REQUEST["sire"])?"Sire: ".$_REQUEST["sire"]:"");
?>
Thank you, however I am getting a syntax error with that. I tried editing a bit but could not figure it out.
There is some strange character in there causing issues... try:
<?php
echo(isset($_REQUEST["sire"])?"Sire: ".$_REQUEST["sire"]:"");
?>
Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.
These out-of-the-box solutions provide you proven, tested applications that can be up and running now. Build a store, a gallery, or a web-based email solution.