Jump to content

Recommended Posts

Posted

In relation to Schedules, would it be possible to have an automated schedule randomizer,which you could list certain routes to be randomized and then say every three hours the times change unless bid on?

so although the route stays the same it rotates over 24hrs to enable more people from accross the globe to select a more appropriate timed schedule?

thoughts or comments?

  • Administrators
Posted

If you enter the start times properly, you can easily pick out the schedules which are around that time period. But yes, what you want to do is easily possible as well.

Posted

My response was going to be, in the schedule search, i would like to add a search for all flights departing in less than one hour.

Is there a quick code snippet available?

i managed to get to here but need the scripty bit to search

<div id="time">

	<p>Select Nearest Departure Time :</p>

	<select id="type" name="type">


		<option value="less">Less Than</option>

	</select>
	<label>
	<select name="time" id="time2">
	  <option>1 hour</option>
	  <option>5 hours</option>
	  <option>10 hours</option>
	  <option>24 hours</option>
    </select>
  </label>
	<input type="submit" name="submit" value="Find Flights" />

  • Administrators
Posted

You'd have to find the query, I don't remember it off the top of my head but it' would be something like:

// This query might need some work, something like this though
$where = array("DATE_SUB(NOW(), 'INTERVAL 60 MINUTE') <= s.deptime");
$schedules_list = SchedulesData::findSchedules($where);

And that will return the list. The documentation has the details on how to then loop through $schedules_list

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.

Loading...
×
×
  • Create New...