Jump to content

renip9

Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

renip9's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. renip9

    Calender

    got it forget it thanks guys
  2. 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>"; } ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.