Jump to content

avdesigns

Members
  • Posts

    285
  • Joined

  • Last visited

Posts posted by avdesigns

  1. Hi,

    This doesn't work still, I have to have that link above the body end tag. There are no other js links in the page minus the core ones and even when I've tried removing them it does not work either.

    Thanks

    Jacob

  2. Hi!

    I need to use javascript 1.9.1 using

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    

    however when I do it the no route passed issue occurs. Does anybody know how I can use js 1.9.1 without having this error?

    Thanks!

    Jacob

  3. Hello!

    I am just wondering if somebody could tell me the code for the following options on the flight search (simpilot):

    • Flight times so show flights between 5 and 7 hours
    • Show flights on a particular day.

    Thanks!

    Jacob

  4. Luckily I was quick enough to delete the folder before they managed to get into the tui. However I find it strange how for the most of va's they are simply adding an index file basicly notifying the admin they need to patch the bug in the site and then once the file is deleted there are no problems... its as if some of them are actually trying to help. However a message to Nabeel instead of going into the sites would have been a kinder way of telling us.

    Jacob

  5. I do it like this:

    <?php
    function login(){
    $user = $_POST['username']; // username field in form
    $pass = $_POST['password']; // password field in form
    
    Auth:ProcessLogin($user, $pass);
    }
    ?>

    Add name="submit" to your submit button and then:

    if(isset($_POST['submit'])){
    login()
    }
    

    Then you can do an else for errors etc...

    Thanks for replying :) I keep getting fatal errors when trying this, please can you place the form so I can ensure I am placing things correctly?

    Thank you

×
×
  • Create New...