Jeg har en side, hvor brugeren skal kunne vælge nogle visninger på en anden side, afhængig af den dato de vælger i List feltet.
Når jeg prøver det, ser det ud til, at alle datoerne vælges og der skiftes til siden med visningerne med det samme.
Her er scriptet:
------------------------------------
<?php
//Connection statement
require_once('../Connections/perodd.php');
//Aditional Functions
require_once('../includes/functions.inc.php');
// begin Recordset
$colname__odindex = '-1';
if (isset($HTTP_GET_VARS['date'])) {
$colname__odindex = $HTTP_GET_VARS['date'];
}
$query_odindex = sprintf("SELECT * FROM oddepbook WHERE `date` = '%s'", $colname__odindex);
$odindex = $perodd->SelectLimit($query_odindex) or die($perodd->ErrorMsg());
$totalRows_odindex = $odindex->RecordCount();
// end Recordset
//keep all parameters except date
KT_keepParams('date');
//PHP ADODB document - made with PHAkt 2.8.2?>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="../globalbooking.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="70%" border="0" align="center" cellpadding="2" bgcolor="#CCCCCC">
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td>Onlineday pr. date </td>
<td>Onlineday pr. Online type </td>
</tr>
<tr>
<td><form name="form1" method="post" action="">
<A HREF="departure.php?<?php echo $MM_keepURL . (($MM_keepURL!="")?"&":"") . "date=" . urlencode($odindex->Fields('date')) ?>">
<select name="select">
<option>12.09.05</option>
<option>20.09.05</option>
<option>10.10.05</option>
<option>18.10.05</option>
<option>14.11.05</option>
<option>15.11.05</option>
<option>12.12.05</option>
</select>
</A>
</form></td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>
<?php
$odindex->Close();
?>
---------------------------------
Hvordan får jeg feltet til at vente til der er valgt den dato der ønskes, inden visningssiden kommer frem ?
http://www.ivao.dk/odbooking/index.php check den ud her
Tak for hjælpen