Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. vivilady

    Login Script Error

    Thank you ever soo much, I just had to blank out the last else statement and it works! thank you for your help, it was very much appreciated... Thanks a million.
  2. vivilady

    Login Script Error

    These two lines being: setcookie("username", $username); header("Location: home.php");
  3. vivilady

    Login Script Error

    Progress! when I put in fake details, it forwards me to the fail.php page, correct. However when I put in right details, it dosn't forward me and it also echoes the following on the screen Warning: Cannot modify header information - headers already sent by (output started at...
  4. vivilady

    Login Script Error

    any way forward for me? I really can't see why this is not going through. the code looks fine to me, well iguess am not an expert this why...
  5. vivilady

    Login Script Error

    it echoes out on the screen the following and still dosn't redirect me. No Submit pressed. This is $_POST array: Array ( [username] => ono17 [password] => 123456 [Submit] => Submit )
  6. vivilady

    Login Script Error

    it gives the following error on this line: if ($row['password'] == $password) && ($row['username'] == $username) Error: Parse error: parse error in e:\webareas\ou301\easyfly\login.php on line 39
  7. vivilady

    Login Script Error

    None of the three is happening, the screen simply refereshes.
  8. vivilady

    Login Script Error

    No, there isn't at the momment that is based on the final script i sent. But it is still not verifying
  9. vivilady

    Login Script Error

    Be redirected to index.php if everything checks ok
  10. vivilady

    Login Script Error

    I have tried changing the code to the one below, but I am having error where am comparing the dbpassword against the inputted password Please see the code: <?php $submit = $_POST['submit']; $username = $_POST['username']; $password = $_POST['password']; if(isset($submit)) {...
  11. vivilady

    Login Script Error

    nothing is when i hit submit it just does nothing
  12. vivilady

    Login Script Error

    Hello guy, I have a little bit of problem again. I modified a peice of code given 2 me by jpadie to use else where but I can't seem to figure out why the code is not doing what it is supposed to. It is a login page which simply checks if a user is in the db if so sends them to a page else...
  13. vivilady

    Mysql Insert Problems

    Thanks a million jpadie like I and many other people in this forum has previously said, you are a true genious and an inspiration to many! Thank you once more for your effortless help. It Works!
  14. vivilady

    Mysql Insert Problems

    Hurray, here is the result... Array ( [Field] => destination_id [Type] => mediumint(8) unsigned [Null] => [Key] => PRI [Default] => [Extra] => auto_increment ) Array ( [Field] => destination_name [Type] => varchar(30) [Null] => [Key] => [Default]...
  15. vivilady

    Mysql Insert Problems

    Fatal error: Call to undefined function: () in e:\webareas\ou301\easyfly\insert_destinations.php on line 7 Line 7 being: $query ("DESCRIBE destination");
  16. vivilady

    Mysql Insert Problems

    Sorry for that, should have pointed that out. $mysql_pconnect($hostname_Connection, $username_Connection, $password_Connection) or die(mysql_error());
  17. vivilady

    Mysql Insert Problems

    this time it gave this error, Fatal error: Call to undefined function: () in e:\webareas\ou301\easyfly\insert_destinations.php on line 2
  18. vivilady

    Mysql Insert Problems

    Parse error: parse error in e:\webareas\ou301\easyfly\insert_destinations.php on line 12
  19. vivilady

    Mysql Insert Problems

    the code gave an error on this line " extract $row; " Thanks
  20. vivilady

    Mysql Insert Problems

    Array ( [destination_name] => gege [Adult_price] => 121 [Children_price] => 112 [Submit] => UPDATE DATABASE ) INSERT INTO destination ('destination_name', 'destination_adult_price', 'destination_children_price') VALUES ('gege', '121', '112')

Part and Inventory Search

Back
Top