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 Wanet Telecoms Ltd 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. zuu2343

    onclick ?

    THANK YOU....THANK YOU AND THANK YOU AGAIN....
  2. zuu2343

    onclick ?

    That's it!!!!!!!!!! I am telling you....You're the man......It is working perfectly.... One more thing if you do not mind... How can I put a little form to let the visitor determine which page they would like to start with... There are thousands of pages and the number is increasing everyday...
  3. zuu2343

    If Condition....

    Thank you so much for your reply. I am afraid the SQL statement you providied did not do the job... I am still trying...My head is about to explode :)
  4. zuu2343

    If Condition....

    I tried your SQL but still did not receive it the way I needed to. Do you this if the reson could be becuase there would be no NULL data for StayedIN table because every data entered there would have a key automatically? By the way, thank you for your replies... Here is the needed layout...
  5. zuu2343

    If Condition....

    <?php $query = "SELECT * FROM Customers"; $result = mysql_query($query); while ($row = mysql_fetch_array($result)) { $CustomerID = $row[CustomerID]; $query2 = "SELECT * FROM StayedID WHERE CustomerID = '$CustomerID' ORDER By HotelID"; $result2 = mysql_query($query2); while ($row =...
  6. zuu2343

    If Condition....

    I have Hotels and Customers tables (mysql) which gives information about which customer stayed in which hotel. Here is the info Table: Hotels Hotel ID Hotel Name Table: StayedIn StayedInID: CustomerID: StayedIn: (HotelID) What I need is to give report where each customer stayed in like...
  7. zuu2343

    passing data through 10 pages

    Thank you so much sleipnir214, and jimoblak You helped me a lot.. I'll go with the hidden. it works now. good luck on your work..
  8. zuu2343

    passing data through 10 pages

    here is the code i have so far, but fourth page still shows the score from the second ***************************************************** <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;> <html> <head> <title>Quiz</title> <meta http-equiv=&quot;Content-Type&quot...
  9. zuu2343

    passing data through 10 pages

    Thanks for the quick answer.. I really appreciate it. with the hidden type, can I show their points on the quiz pages like below?how? quiz page2 wrong answer point 1 quiz page3 right answer point2 quiz page4 wrong answer point2 thnaks again..
  10. zuu2343

    passing data through 10 pages

    I forgot to tell you , I do not have any database installed on the server. Quiz will be take and quit kind of one..
  11. zuu2343

    passing data through 10 pages

    Hi, I am creating a quiz with php including 10 questions. For each question I'd like to have a different page. As the user answer each question, their point will increase or remain same. I used simple form with post method, and I can have first two pages working. However, my problem is I...
  12. zuu2343

    Displaying different form results on the same page!!!

    Hi, Is it possible to display form results from different forms on the same page without using database? The thing is I have 3 different forms and user will enter info to the display page. Different people will use different forms and clicking the submit button will take them to the display...

Part and Inventory Search

Back
Top