I don't know how to write a php script that will allow a customer access to the status of his/her product. I have a basic form with First Name, Last Name, Job Number (which is a receipt that they are given when they give their item to us for repair), email, and comments. My hope is that when the customer enters his/her job number, they can then retrieve the necessary information from my database that will display the status of their product.
The columns in my database are: customer_id, first_name, last_name, job_number, email, date_received, date_proceeded, repair_charges, part_charges, date_shipped, total_sale, total_due, comments.
And I'm trying to write a query that will allow a customer, by entering their Job Number into a form, access the date_received, repair_charges, etc. from the database.
This seems basic, but I'm not too knowledgeable (yet) about the PHP language.
Thank you very much for any suggestions...