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>"; }?> Quote Link to comment Share on other sites More sharing options...
renip9 Posted May 6, 2006 Author Share Posted May 6, 2006 got it forget it thanks guys Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.