Black Vivi you are the man. Again you help me out. Thanks a million.
I have one more question.
If the html form is in one document and the php is in another one how do I call the variable with echo from another document
or in other words
PHP Code:
$subopt = "THE HTML";
is in a document called pd_opt.php
and I'm trying to get
in the first document in the html, so do I need to include anything extra so I can get the variable into my html document???
ok I think I got it but can you let me know if this is right???
PHP Code:
<?
function pulldown_type()
{
include(pd_opt.php);
echo($subopt);
}
pulldown_type()
?>
is that right???