Jump to content

Recommended Posts

I have designed a simple page to get meeting room details to display on our dashboards.

I would like to filter for today's date (start date) and then sort by room name (name) if possible:

(if you believe this could be written better (the server is on php 5.4) then also please let me know:

$ch = curl_init($url); 
   
//curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);


$response = curl_exec($ch);
curl_close($ch);

$response = strip_tags($response);
$response = trim(preg_replace('/\s+/', ' ', $response));
$bookingArray = json_decode($response, true);
$timezone = date_default_timezone_get();

{
foreach($bookingArray["result"]["bookings"] as $booking)
{
echo
$booking["name"] 
. " - " .  
$booking["eventStatus"]["type"]
. " - ".
substr($booking["startDate"], -20)
. " - " .
substr($booking["endDate"], -20)
. " - " .  
$booking["eventName"]
. " - ".
$booking["primaryContact"]["givenName"]
. " " .
$booking["primaryContact"]["surName"]
. "<br>";
}
}

?>

</body>
</html>

Link to comment
https://forums.phpfreaks.com/topic/308306-filter-for-todays-date-and-sort-by-name/
Share on other sites

Are you submitting some request to an API? Does that have any sort of searching, filtering, or sorting capability?

$response = strip_tags($response);
$response = trim(preg_replace('/\s+/', ' ', $response));

Why are those lines there? Are you sure you need them? (You shouldn't.) Does the script still work if you remove them? (It should.)

2 hours ago, requinix said:

Are you submitting some request to an API? Does that have any sort of searching, filtering, or sorting capability?

$response = strip_tags($response);
$response = trim(preg_replace('/\s+/', ' ', $response));

Why are those lines there? Are you sure you need them? (You shouldn't.) Does the script still work if you remove them? (It should.)

I am submitting a request to an api - it then returns the 7 fields on a line in a big list.

ill check to see if the api can filter/sort and also remove the response as well - I'm a beginner to php and only got this far due to my sql knowledge - in php is there an order by command?

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.