php submit form url

  • Thread starter Thread starter bishop2001
  • Start date Start date
B

bishop2001

Greetings,
i have a form where im checking what values were chose from a dropdown menu. At the moment if echo'ing back the values to the page, although id like to add a url in there. Suggestions please.

PHP Code:
<?
if (!isset($_POST["menu"]) and ($_POST["date"])){
echo
"[please select appliance and date...]";
}else{
echo
$_POST["menu"]."<br>";
echo
$_POST["date"];
// go to a url: http:// $_POST["menu"].$_POST["date"].html
}
?>


Continue reading...
 
Back
Top