Layout

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.

http://pastebin.com/Ka5MEtaZ

It will produce something like this -> http://www.simpilotgroup.com/skins/index.php/Schedules

Be sure to have the skin set to jet2org…

2 Likes

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

Thanks a million, exactly what i was looking for :L

Just stumbled across this layout, looks amazing, anyone able to share this?, your link is dead simpilot

Just stumbled across this layout, looks amazing, anyone able to share this?, your link is dead simpilot

ps. sorry for the double post

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.

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

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.

Cheers

Too bad the code is not availible at this moment anymore. I really like it too.

Maybee somebody has something lying around:-)

Regards,

Cor