Jump to content

Nabeel

Administrators
  • Posts

    8149
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Nabeel

  1. Nabeel

    Note

    http://forum.phpvms.net/index.php?topic=816.0
  2. This topic has been moved to General & Support. [iurl]http://forum.phpvms.net/index.php?topic=816.0[/iurl]
  3. I can't tell by looking at it, have you downloaded firebug?
  4. That width is defined in the CSS files, wherever you place them. Adding PHP code is just the same as a nywhere else. What's the exact error you're getting?
  5. Nabeel

    Compromise

    Looks good mang
  6. You could possibly do it on the bids page, and have a link to simroute there?
  7. Nabeel

    Adding to

    You could but it wouldn't be very clean. Probably a module would be good for it, with a call to the module function within the template. You can add a column to the db, though then you would need to edit it which is an admin panel mod
  8. And add the link in the notes section, that could be done. It would be alot to add a route upload section
  9. There's code already to do the addition, just need to implement it. Haven't had the time yet though, sorry!
  10. Yep
  11. I'll check it out
  12. Interesting, I'll consider it
  13. not yet, I haven't had the time to integrate it, FSFK is a bit tougher to do
  14. Search for jquery gallery, there's some real nice ones which are easy to use. For instance the one I use here: http://phpvms.net/gallery
  15. Using firebug will help since you can mess with the styles. Haven't had time to look just yet
  16. Nabeel

    Adding to

    What kind of restriction? You can actually do it in the template (schedule_results.tpl) The example is there, which skips the day if it's not the current day. You can easily add code there to check any other conditions (for instance the last airport). So you can do it in the template, that way it's totally portable. I try to leave controllers to retrieve data, then dictate the template to display it. Then any (simple) display logic can go in the template.
  17. Nabeel

    Map Control

    No prob, check out sitepoint.com too, great tutorials there
  18. Thanks nabeel at nsslive (dot) net
  19. Don't do any manual queries: This is kinda backwards, but the URL; http://yoursite.com/index.php/yourmodule?confirmid=$confirmid Replacing $confirmid with the right one, of course <?php $_GET['confirmid'] = $conf_id; // This will be from the URL above, you don't actually need this line RegistrationData::ValidateConfirm(); // This is an old function, but still works There used to be email confirmation, but that was disabled in favor of the admin confirmation
  20. Nabeel

    Map Control

    It's ok!! Go slow, and read some PHP tutorials too. It's a little tough to jump straight into it, but as usual, any questions, go ahead and ask
  21. YEssir, you got it. You have to pass it the correct variable to it knows what you're talking about
  22. SOrry man! I been so busy. I'm trying to recover this file from an old backup, but not having any luck. I guess you could just follow the tutorial and type it up?? Unless someone has it?
  23. You have the confirmation ID available, perhaps that's a better way to send it, instead of the ID? Anyone can change the ID or spoof it. The confirmation ID is one time
  24. Nabeel

    Map Control

    Sometimes CSS interferes with the google map. Any general styles for img {} or something.
  25. You would use: $airport_info = OperationsData::GetAirportInfo ($icao); Using the proper $icao variable, of course Also, you have a mispelling: foreach($location as $airportloaction) { echo $airportlocation->name; }
×
×
  • Create New...