-
Posts
79 -
Joined
-
Last visited
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by vader21
-
How do you keep your roster Active?
vader21 replied to HawaiianAirVirtual's topic in Virtual Airlines Discussion
I hope that's something affordable. -
How do you keep your roster Active?
vader21 replied to HawaiianAirVirtual's topic in Virtual Airlines Discussion
Yes sir, as well as free themes, custom themes will be very cheap! Full details coming soon. -
How do you keep your roster Active?
vader21 replied to HawaiianAirVirtual's topic in Virtual Airlines Discussion
Couldn't agree with you more, For example if you start " American Virtual Airlines " by having the virtual in the name states that your simulating the real thing, and when you simulate something it's getting as close as possible to the real thing. Yet again what you guys do is up to you i wouldn't like to start criticizing. -
How do you keep your roster Active?
vader21 replied to HawaiianAirVirtual's topic in Virtual Airlines Discussion
I would be able to help you sir I will make free themes for phpvms the first one coming in a few weeks on my main website, and on the forum as well. For custom themes it will be very very very cheap! under $5 -
Hello all, Sorry i been gone for so long things have not been very good financially therefore causing me to barely have any free time. As you all been aware i started an add on for an ifs and i never got to finish it, if anyone wants the code i will be more then glad to pass it on. But this topic is not about this, after many hours of planning and thinking this through i have decided to start a Virtual airline of my own. This will be done with great love an appreciation to the hobby. The airline will be called "jetFree" | Slogan: Always free to fly... Based out of Boston Logan International Airport in Boston Massachusetts. The fleet will initiate with three Boeing 777-200ER and a dozen international routes. We will aim to provide long and short haul service across the globe with first class supplies. With my great knowledge of webdesign i will build around phpvms and a portion of custom addons. I have over 10 years of coding with a degree in IT. I need a few people who are interested in forming a great alliance to make this possible. I will appoint every position to who ever meets the qualifications including CEO. If you are interested let me know by PM or simply comment below. Thank you so much! With your help we can form a virtual airline like its meant to be!
-
Hello Community, Sorry for the delay i been having some money issues with my personal life due to this economy and has caused a put back! I got everything under control now sorry for that. The beta will open the 6 so email me for the access code. I will only choose 10 people! Thank you and sorry for the delay once again!
-
Yes sir,
-
This is the entire code for that tpl just copy and paste! This is only to show the news on a table! <?php $res = SiteData::GetAllNews($row->id); ?> <table width="100%" cellspacing="0" cellpadding="4"> <tr align="center" class="row1"> <td><strong>News Title</strong></td> <td><strong>Date Submitted</strong></td> <td><strong>Written by</strong></td> <td><strong>News ID</strong></td> </tr> <?php $i = ( int )1; foreach($res as $row){ ?> <tr align="center"> <td><a href="<?php echo SITE_URL ?>/index.php/PopUpNews/popupnewsitem/?itemid=<?php echo $row->id;?>"><?php echo $row->subject;?></a> </td> <td><?php echo date("D, d M Y ", $row->postdate);?></td> <td><?php echo $row->postedby;?></td> <td><?php echo $row->id;?></td> </tr> <?php if ( $i == ( int )5 ) { break; } else { $i++; } } ?> </table>
-
It will be a open beta for phpvms users only! here is a preview of the frontpage and it's meanings
-
BETA testing will begin in 5 days
-
Hey maybe i can help,What do you mean?
-
<?php $res = SiteData::GetAllNews($row->id); ?> <?php $i = ( int )1; foreach($res as $row){ ?> <?php if ( $i == ( int )5 ) { break; } else { $i++; } } ?> Now remember when you call the class on your front page leave it as (1) not 5. Good Luck
-
Good evening to all again, i have installed a few things already on the system. I wanted some requests to make my job a little easier If you have something in mind you would like to see on the IFS just post it!
-
So Far this is a standalone system, with all the essentials for a perfect IFS. It is password protected by you can provide the password to your pilots. A full list of features coming soon.
-
Okay am more then half way on building this. I was up all night to make this possible ASAP! Now the directory will be a standalone being a complete system with a access code you can give your pilots in the pilot center. That is one version which can be totally modified to your needs, now i can also code a phpvms module which will be on your main site. I will need BETA testers soon to make sure it all goes well! If you want to BETA test let me know please. Thank you
-
Hello community, I been thinking of build an IFS or in flight entertainment system for pilots, which can be used to view videos listen to music and chat. I wanted to see what would be the demand for it if any. So am starting this topic to see how many of you would actually use something like that or how many would like to have it. Feedback is most appreciated.
-
@vansers, so i take that as an okay?
-
That information would be useful yes! :)but if you want i can try to code this for you! Oh by the way, how are you doing the translator? are you making individuals pages for it? or using GOOGLE API?
-
That is an awesome video! I saw it before but i never thought it was yours
-
Well an actual app would be irrelevant i would say, because making a PHP detection and then having a skin for the admin so it can act as in app that would be easier i think. The iphone already has an option to save a page like an app icon.
-
That is correct and cookies have a limit! also remember JavaScript can be disabled!
-
I can create this very easily, Let me know if you guys still would want this!
-
You may do this with javascript <script type = "text/javascript"> var parselimit = 110; function submitForm() { document.forms[0].submit(); alert ("Your Exam has been submited due to your time limit."); } function begintimer(){ if (!document.images){return} if (parselimit==1){ submitForm(); } else { parselimit --; curhr=Math.floor(parselimit/3600); curmin=Math.floor(parselimit/60); curmin=curmin-(curhr*60); cursec=parselimit%60; if (curhr!=0) { curtime=curhr+" hr: "+curmin+" min: "+cursec+" sec"; } else if (curmin!=0) { curtime=curmin+" min: "+cursec+" sec"; } else { curtime=cursec+" seconds left" ; } window.status=curtime; tim = setTimeout("begintimer()",1000); thelement.innerHTML="<b style='font-size:14;color:red;'>"+curtime+"</b>" } } </script> And then don't forget to use the <body onload = "begintimer()"> Let me know if it all worked out for you! If not we can try to find the issue
-
What exactly would you like to save sir? I know you said what the user has clicked but give us a little more information please.(At least for me)