Hi all, posted previously about how to go around getting something like this:
Never really got a strong response, Nabeel suggested something like:
<table>
<tr>
<td>flight num</td>
...
<td>deprt city</td>
<?php
// We are gonna loop each day of the week
for($dayofweek = 0; $dayofweek < 7; $dayofweek++)
{
// echo our column opening
echo '<td>';
// Check if $i (the current day of week) exists
if(substr_count($schedule->daysofweek, $dayofweek) > 0)
{
// there is a flight for sunday , so echo that plane icon out
echo 'plane icon';
}
// Close that column
echo '</td>';
}
?>
<td>arrival time</td>
...
</tr>
</table>
I am not the best at coding, could someone please give me some sort of instructions ?
I would like it to look like the picture although not exact as it looks like I would be asking for too much then
I did this for jet2virtual.org when it was in operation. It is a bit cumbersome and could be refined but serves the purpose. You will have to change the image links.
Thank you for that simpilot. I’ll will try that when i get home. Becasue i been looking something like this for a while. Thanks for sharing simpilot. +1 for your rep
Hi Tylor. That pastebin is long gone. It was from August I believe. That is a nice little ditty though. I never saw it before.
Its a shame, it looks stunning, clean layout and easier to use than the default setup, if anyone has this code, or something similar, and is willing to share, don’t hesitate ! lol
Look at the code I had posted… that’s the basic starting point for that
Thanks Nabeel, i was keen to get some developed code as i have a very limited knowledge with developing tables, i can edit, move things around and thats about it, im not sure where to start with your code, if you could help nudge me in the right direction along the way that’d be great, and id learn alot out of it as well.