Hi All Hoping someone can help me out. I have created many different forms the user fills out and clicks submits. The results are passed to a another page which contains the sql to insert it into the database. All the data that is passed stores on the same line in the database in the different colums. What i want to do is allow the user to type in (for example) the first name of 10 people, and each will add a new line in the database, creating a new entry for each. How can i do this? Regards Alex James
research arrays for which every programming language you are using. php will be different for asp, but the basic grammar will be to create an array of strings form the data recieved from the form. Then for each string in the array, create and execute the SQL insert.
Thanks alot, i know exactly what you mean and how that will work, thanks !!! p.s I bloody hate arrays but its got to be done.