Jump to content

Recommended Posts

Hello, I have produced a noteboard style calendar where all events of a particular month are called using a funcion and then number representing the date is echoed out along with its event. The information stored in my .txt file looks like this:  5th|May|Meeting for charity

 

I'd like to know if possible the code which will order the numbers from the lowest to highest number.

 

<?php

function getevents($eventmonth){

$file = file("data.txt"); 

foreach($file as $key => $val){ 

  $data[$key] = explode("|", $val); 

  $day = $data[$key][0];
  $month = $data[$key][1];
  $event = $data[$key][2];

  if($month == $eventmonth){ 

   $out = "$day - $event<br>\n";
   print $out;

  }

}

}

getevents("May");
?>

 

Could someone revise some code into that just to make the dates appear in order from the start of the month to the end of the month please?

 

Thanks for any help!

Link to comment
https://forums.phpfreaks.com/topic/52612-ordering-numered-lists/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.