-
Posts
1307 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by Jeff
-
Grab the custom version of kAcars, and let Jeffrey Kobus know what you are wanting to have shown. Better hurry though, his SPECIAL is running out of time.
-
<a href="http://www.mysite.com/index.php/pages/yourpage">Your Page</a> or <a href="<?php echo url('/index.php/pages/yourpage');?>">Your Page</a>
-
Great...I'm in for it as well....
-
We've been slowly putting something like that together. I think there is something in here along those lines, but cannot remember where at the moment.
-
Although over-priced, Delta Air Lines is all I'll ever fly on.
-
Too bad the forums' "Auto Register" only works when a pilot registers to your site instead of when their registration is approved. That way we wont have that problem.
-
Make sure your link is correct to the file. <a href="http://www.mysite.com/index.php/pilots">Pilots</a> or <a href="<?php echo url('/index.php/pilots');?>">Pilots</a>
-
All out der! - Whats CK Offering for this new year?? web for all
Jeff replied to SkilledPilotA320's topic in Paid Services
If I came upon that website by browsing the internet, I would leave immediately. No one in their right mind is going to sign-up to that if they don't know what they are getting. You don't have any links to any projects you have done. There aren't any demos of the possibilities they can get. I think you need to add more to that site. -
UPDATE*** Okay, I fixed the navigation Menu. I just created two (2) different menus altogether (one for Visitors, and one for members). The menus will change accordingly. I still need help with pagination of the schedules.
-
PM me, I'll get you sorted out.
-
If you made a complete custom page, you might have a <b> or a <strong> in there which do not have a </b> or </strong> to close it, making all your text Bold.
-
<h3><font color="#003399">Latest Arrivals</font></h3> <div class="body"> <div class="news_box"> <?php $flights = PIREPData::getRecentReportsByCount(10); $string = ""; foreach($flights as $flight) { $string = $string.$flight->depicao.'+-+'.$flight->arricao.',+'; } ?> <table width="100%"> <tr> <td><img src="http://www.gcmap.com/map?P=<?php echo $string ?>&MS=bm&MR=240&MX=700x360&PM=pemr:diamond7:red%2b%22%25I%22:red&PC=%230000ff" /></td> </tr> </table> <?php $count = 10; $pireps = PIREPData::getRecentReportsByCount($count); ?> </div> <?php $count = 10; $pireps = PIREPData::getRecentReportsByCount($count); ?> <table width="100%" cellpadding="1" cellspacing="0"> <thead> <tr bgcolor="#003399"> <th align="center"> <font face='Verdana' size='2' color="#FFFFFF">Pilot</font></th> <th align="center"> <font face='Verdana' size='2' color="#FFFFFF">Airline</font></th> <th align="center"> <font face='Verdana' size='2' color="#FFFFFF">Flight #</font></th> <th align="center"> <font face='Verdana' size='2' color="#FFFFFF">Origin</font></th> <th align="center"> <font face='Verdana' size='2' color="#FFFFFF">Arrival</font></th> <th align="center"> <font face='Verdana' size='2' color="#FFFFFF">Landing Rate</font></th> </tr> </thead> <tbody> <?php if(count($pireps) > 0) { foreach ($pireps as $pirep) { $pilotinfo = PilotData::getPilotData($pirep->pilotid); $pilotid = PilotData::getPilotCode($pilotinfo->code, $pilotinfo->pilotid); echo "<tr>"; echo "<td align=center> <font face=Verdana size=2 color=#003399> $pirep->firstname $pirep->lastname</font></td>"; echo '<td align=center width=120px bgcolor=#FFFFFF><a href="'.fileurl('/index.php/pireps/viewreport/'.$pirep->pirepid.'').'" target="_blank"><img src="'.fileurl('/images/airline/'.$pirep->code.'.gif').'" alt="'.$airline->name.'" width="127px" height="32px" /></a></td>'; echo "<td align=center> <font face=Verdana size=2 color=#003399>$pirep->code $pirep->flightnum </a></font></td>"; echo "<td align=center> <font face=Verdana size=2 color=#003399> $pirep->depicao </font></td>"; echo "<td align=center> <font face=Verdana size=2 color=#003399> $pirep->arricao </font></td>"; echo "<td align=center> <font face=Verdana size=2 color=#003399> $pirep->landingrate ft/min</font></td>"; echo "</tr>"; } } else { echo "<tr><td>There are no recent flights!</td></tr>"; } ?> </tbody> </table> </div></div>
-
It is best to leave this function alone. It will only continue to skip ID's when you delete members you already approved (for membership). It does not skip rejected members ID's (unless there are more than one (registrations) at the same time). Changing Pilot ID's can really mess your system up. I had stated in several posts about this subject "People will always join and leave your site. You will never be able to keep up with pilot ID's when you get a substantial amount of members".
-
You are probably going to have to create a module so it can do what you want it to do. you can find the schedules and pilot modules in CORE/MODULES/SCHEDULES/SCHEDULES.PHP and CORE/MODULES/PILOTS/PILOTS.PHP
-
Where are you wanting to show the pilot info? The code will differ, depending on which page you are wanting to show.
-
Another Bump please. I am using Dave's Front Schedules.
-
It would save me from making a custom page for it if you would. You could PM me if interested in sharing Kyle
-
Version 2.1.934 (Located in the bottom right of your Admin Center)
-
<?php echo PilotData::GetPilotCode($pilot->code, $pilot->pilotid). ' ' .$pilot->firstname . ' ' . $pilot->lastname?>
-
any template you want to copy into your skins folder will be read before the ones in core/templates If it cannot find a specific template in your skins folder, it will then look in core/templates
-
You can possibly see how the "You Have Mail" image shows when using the AirMail module, and integrate it in the news module.
-
/core/templates/news_newsitem.tpl Inside you will see: <p><?php echo html_entity_decode($body);?></p> <hr> Remove the <hr>
-
Send it to a zip file and link it
-
Okay, I have searched around Google today, and couldn't find what I am looking for. I need to create some tables side-by-side. I want the tables to be spaced apart from each other. The only codes I could find are where the tables are (joined). Does anyone have the codes, or knows the website that shows it?