returnering af værdi fra dropdownbox
Hej! jeg har et problem med at for returneret en værdi fra en function i en anden fil. Følgende problem stillingfunktionen findes i filen
functions.php
function selectHosts() {
print "<input type=\"hidden\" name=\"hostid\" value =$hostid>";
$sql = mysql_query("SELECT * FROM Hosts ")or die(mysql_error());
print"<select size =\"1\" name = \"mnuHosts\">";
while($row = mysql_fetch_array($sql)) {
$hostname = $row['hostname'];
$hostid = $row['id'];
echo "<option value =$hostid>$hostname</option>";
}
print( "</select>" );
return $_POST['mnuHosts'];
}
denne dropdownmenu kaldes fra left_kap.php
på følgende måde
opendb();
$hostid=selectHosts();
if (isset($hostid)) {
print "Dette er hostid $hostid \n";
}
closedb();
jeg for ikke værdien af $hostid med over.