PHP interesse |
|
Ik heb nu dit, maar het geeft neits weer
<link rel="stylesheet" type="text/css" href="agenda/style.css">
<?php
mysql_connect('localhost','*****','***');
mysql_select_db('******') or die (mysql_error());
?>
<?php
$maand = date("M");
$query = mysql_query("SELECT * FROM acties WHERE maand = '" . $maand . "' ");
while($actie = mysql_fetch_array($query))
{
echo '<tr>
<font size="2">'.$actie['maand'].'</font><br>
<font size="2">'.$actie['titel'].'</font><br>
<font size="2">'.$actie['omschrijving'].'</font><br>
<font size="2">'.$actie['einde'].'</font><br>
<tr>';
}
?>
<link rel="stylesheet" type="text/css" href="agenda/style.css"> <?php ?> <?php $query = mysql_query("SELECT * FROM acties WHERE maand = '" . $maand . "' "); { <font size="2">'.$actie['maand'].'</font><br> <font size="2">'.$actie['titel'].'</font><br> <font size="2">'.$actie['omschrijving'].'</font><br> <font size="2">'.$actie['einde'].'</font><br> <tr>'; } ?>
|