Jump to content

sean212

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by sean212

  1. That is an incrediable idea! I really like it! It is possible because people have done some amazing work to generate PDF with PHP. Do you have a link as to where you got those images for the winds by any chance?
  2. I would go for reCaptcha (http://recaptcha.net/)
  3. Just put this in your app/app.config.php file Config::Set('PILOT_AUTO_CONFIRM', false);
  4. Well it does reall make you life easier! Think about it like this... Would you rather use this... <?php $handle = mysql_connect('localhost', 'blah', 'tt'); mysql_select_db('dbaaa'); $check = mysql_query("SELECT * FROM users WHERE login = '".mysql_real_escape_string($_POST['callsign'])."'", $handle); $total = mysql_num_rows($check); if ($total == 0) { mysql_query("INSERT INTO users (id, login, pass) VALUES (NULL, '".mysql_real_escape_string($_POST['callsign'])."', MD5(".mysql_real_escape_string($_POST['pass']).") )"); } ?> or this... <?php include "includes/bootstrap.php"; Pilot::Add($_POST['callsign'], $_POST['pass']); ?>
  5. I've looked here before and I always thought of phpVMS as a CMS, but I am beginning to realize that I needed something that has the ability to scale with the airline as it expands. I also hope to help out around her a bit more, since I am paid to work with MVC on PHP on a daily basis Simulated Continental is moving to phpVMS soon so this should be fun.
  6. Hi, Is there any documentation on how an external VA (one not running phpVMS) could use the VACentral API? I already signed up my VA but how to integrate it with the web. Thanks!
×
×
  • Create New...