It is up to you how much information about clients you want to keep. As far as this article is concerned, I will only keep the information that is needed to run an invoice system. The obvious information to store about clients is name, address, email, phone number and of course the date that you started working with the client. You are very limited in what you can do with client information, in fact the few things you can do are add a new client, and remove, update, and view client data. So let's create a table that will reflect this information: CREATE TABLE `client` ( Simply copy and paste the above code into your MySQL clients' SQL window and run the SQL. Once the table has been created and it's all working, create a new PHP document and save it as "allclients.php." This page will list all the clients in the database. At the very top of the page, add the following code: Code7 allclients.php <? The above code simply retrieves all the client data from the database. The retrieved number of rows is stored in the "$num_clients" variable.
blog comments powered by Disqus |