$item = mysql_query("SELECT * FROM items WHERE id='$keuze'") or die(mysql_error());
$item_info = mysql_fetch_array( $item );
$verhaal = stripslashes($item_info['verhaal']);
echo "$verhaal";
?>
$actueel = mysql_query("SELECT * FROM items WHERE id='2'") or die(mysql_error());
$actueel_info = mysql_fetch_array($actueel);
$status = $actueel_info['status'];
if($status == "actief"){
$titel = $actueel_info['titel'];
$link = $actueel_info['link'];
echo"";
}
?>