renip9 Posted May 6, 2006 Share Posted May 6, 2006 OK i am trying to get my calender to just show 5 events at a time but everytime i try to change this code to only show 5 it kills my script. can someone please help me. as is it works but it shows all my scheduled events. <?php$connection = mysql_connect("localhost","******","******")or die ("connot connect");$db = mysql_select_db("BIN",$connection)or die ("couldn't connect");$USERVAR = ow4allu;$sql = "SELECT * FROM calendar_events where USERNAME='$USERVAR' ORDER BY event_start";$result = mysql_query($sql) or die("cannot connect");while ($newArray = mysql_fetch_array($result)) { // give a name to the fields $event_start = $newArray['event_start']; $event_title = $newArray['event_title']; echo "<font color=\"#FFFFFF\"><strong>$event_title</strong><br> $event_start </font><br><br>"; }?> Link to comment https://forums.phpfreaks.com/topic/9193-calender/ Share on other sites More sharing options...
renip9 Posted May 6, 2006 Author Share Posted May 6, 2006 got it forget it thanks guys Link to comment https://forums.phpfreaks.com/topic/9193-calender/#findComment-33869 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.