Oud lid |
|
Kan iemand zien wat ik hier verkeerd doe, de waardes gaan wel in de listbox, dus tot daar is alles in orde, maar als ik verzend bereikt de waarde de volgende pagina niet, dus var is leeg
<?php
echo "<form action='index.php?blog=archive' method='post'>";
echo "<select name='getarchive'>";
while ($rows = mysql_fetch_assoc($result))
{
if ($rows['ayear'] != $ayear)
{
$ayear = $rows['ayear'];
}
$amonth = $rows['amonth'];
echo "<option value='";
echo $amonth, $ayear;
echo "'>";
echo $amonth, " - " , $ayear;
echo "</option>";
}
echo "</select><br><input type='submit' value='Go'></form>";
?>
<?php echo "<form action='index.php?blog=archive' method='post'>"; echo "<select name='getarchive'>"; { if ($rows['ayear'] != $ayear) { $ayear = $rows['ayear']; } $amonth = $rows['amonth']; echo $amonth, " - " , $ayear; } echo "</select><br><input type='submit' value='Go'></form>"; ?>
En dit staat op de volgende pagina, zou moeten werken aangezien ik het ergens anders reeds gebruik
<?php
$getarchive = $_POST['getarchive'];
?>
<?php $getarchive = $_POST['getarchive']; ?>
|