Lid |
|
Ik heb een probleempje met me script.
Ik heb iets geschreven gewoon over het WK
ik kan invullen als nederland wint verliest of gelijkspeeld dan geeft hij een message.
Ik heb nou een probleem, ook al is de waarde niet true geeft hij toch de message.
<?php
$huidigedata = date("d F");
require("config.php");
$wkcheck = mysql_query("SELECT * FROM totwk WHERE datum ='".$huidigedata."'");
$wksplit= mysql_fetch_assoc($wkcheck);
if ($huidigedata == $wksplit['datum']) {
echo "<h3>Nederland speelt vandaag tegen ".$wksplit['land']. "</h3><hr>";
}
if ($wksplit['nlscore'] > $wksplit['tegenstanderscore']) {
echo " Holland booked a victory on <b>".$wksplit['datum']."</b> and won from <b>".$wksplit['land']."</b>". " <b>Score:</b> Nederland :" .$wksplit['nlscore']." - " .$wksplit['land']." : " .$wksplit['tegenstanderscore']." <img src='/sec/logo/nlvlag.gif' width='44' height='27' border='1' />" ;
}
// HIJ GEEFT TELKENS OP ME PAGINA AAN The Netherlands tied on ( maar dar kan niet want de WAARDE BESTAAT nog NIET)
elseif($wksplit['nlscore'] == $wksplit['tegenstanderscore']) {
echo " The Netherlands tied on <b>".$wksplit['datum']."</b> against <b>".$wksplit['land']."</b>";
}
else {
echo " Holland <b>lost</b> a match on <b>".$wksplit['datum']."</b> against <b>" .$wksplit['land']. "</b> <br><b>Score:</b> <b> Holland :" .$wksplit['nlscore']." - " .$wksplit['land']." : " .$wksplit['tegenstanderscore']."</b> <img src='/sec/logo/voetbal_verliesEK.gif' width='107' height='68' /> ";
}
?>
<?php $huidigedata = date("d F"); require("config.php"); $wkcheck = mysql_query("SELECT * FROM totwk WHERE datum ='".$huidigedata."'"); if ($huidigedata == $wksplit['datum']) { echo "<h3>Nederland speelt vandaag tegen ".$wksplit['land']. "</h3><hr>"; } if ($wksplit['nlscore'] > $wksplit['tegenstanderscore']) { echo " Holland booked a victory on <b>".$wksplit['datum']."</b> and won from <b>".$wksplit['land']."</b>". " <b>Score:</b> Nederland :" .$wksplit['nlscore']." - " .$wksplit['land']." : " .$wksplit['tegenstanderscore']." <img src='/sec/logo/nlvlag.gif' width='44' height='27' border='1' />" ; } // HIJ GEEFT TELKENS OP ME PAGINA AAN The Netherlands tied on ( maar dar kan niet want de WAARDE BESTAAT nog NIET) elseif($wksplit['nlscore'] == $wksplit['tegenstanderscore']) { echo " The Netherlands tied on <b>".$wksplit['datum']."</b> against <b>".$wksplit['land']."</b>"; } else { echo " Holland <b>lost</b> a match on <b>".$wksplit['datum']."</b> against <b>" .$wksplit['land']. "</b> <br><b>Score:</b> <b> Holland :" .$wksplit['nlscore']." - " .$wksplit['land']." : " .$wksplit['tegenstanderscore']."</b> <img src='/sec/logo/voetbal_verliesEK.gif' width='107' height='68' /> "; } ?>
Kan iemand mij mischien helpen?
|