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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by elantrip

  1. elantrip

    Required Fields Check Problem

    Thanks for your comments. Obviously I'm new to PHP/HTML so anything to stear me in the right direction is appreciated. >Are you planning on outputting the form every time the script runs? I am planning on outputting the form when the script runs (to redisplay the data that has been entered)...
  2. elantrip

    Required Fields Check Problem

    Sorry, still not working. I think I may not be giving you the full picture. I'm taking sleipnir214 (above) advice and here's how I did it: <html> <head> <title>Input Form</title> </head> <body> <? //Create form $lsrform = "<form method=\"post\" action=\"$_SERVER[PHP_SELF]\">...
  3. elantrip

    Required Fields Check Problem

    I'm so sorry I'm so dense... But, here's how I'm displaying the checkboxes: <INPUT TYPE=CHECKBOX NAME=\"Chicago\" >Chicago <br> Trying to translate your example to how I'm doing the checkboxes I used: <input type=checkbox name=\"Chicago\" <? if($_POST[Chicago]==\"on\") echo...
  4. elantrip

    Required Fields Check Problem

    Thank you for your help. I created the script to create the HTML page and is working wonderfully when I redisplay the data. I am, however, having a hard time figuring out how to redisplay checkboxes and drop down boxes. Can anyone shed some light?
  5. elantrip

    Required Fields Check Problem

    OK, I know that plenty has been posted regarding this subject, but I'm completely lost and confused and I apologize for this... I'm talking about the standard: enter data, check for required fields, if required fields are empty return to page with data entered still there. 1. I have...
  6. elantrip

    Need help with syntax for MS Access query (newbie)

    That works. Thank you so much for your help.
  7. elantrip

    Need help with syntax for MS Access query (newbie)

    I have a simple MS Access table that has three fields: ID, ProducerName and Producer# I need to query the table for a Producer# based on what the end user enters. Here is the initial HTML code that gets the ProdNum: <HTML> <HEAD> <TITLE>Log In</TITLE> </HEAD> <BODY> <FORM...
  8. elantrip

    Need latest record from a multiple table query

    Does work like a charm. For some reason the same query does not return any rows in the Table Editor in the Manager Console. Worked great within SQL Plus. You've been a GREAT help. Thanks again.
  9. elantrip

    Need latest record from a multiple table query

    Thanks for the response, but I am not getting any records back. Here's what the query looks like: SELECT * FROM insured i, claim c, hist_claim h WHERE i.policy# = c.policy# AND c.claim# = h.claim# AND h.date_changed = (SELECT max(date_changed) FROM hist_claim...
  10. elantrip

    Need latest record from a multiple table query

    I have three tables: INSURED (basic insured info): POLICY# LAST FIRST EXP_DATE EFF_DATE CLAIM (claim info for each claim files by the insured): CLAIM# POLICY# TYPE_LOSS CAUSE DATE_LOSS DATE_REPORTED...

Part and Inventory Search

Back
Top