Search found 4 matches
- Sat Sep 01, 2007 2:38 pm
- Forum: PHP - Code
- Topic: Arrays and Forms Help
- Replies: 5
- Views: 330
Figured it out I I think
I took out the single quotes in my original form. That seem to make it right. Still looking to break out each value with it's key into a variable. Would I use explode function to do this?
- Thu Aug 30, 2007 10:13 pm
- Forum: PHP - Code
- Topic: Arrays and Forms Help
- Replies: 5
- Views: 330
Getting Closer!
Thanks Kieran, this seems to work well here is the end result... INSERT INTO `players` (\'free_agent_team\', \'playeridnum\', \'lastname\', \'firstname\', \'number\', \'position\') VALUES ('29','1188007541','FirstName','Lastname','12','O') I have backslashes in the first part of the statement which ...
- Wed Aug 29, 2007 11:57 pm
- Forum: PHP - Code
- Topic: Arrays and Forms Help
- Replies: 5
- Views: 330
Insert Statement
What I really need to do is create and INSERT statement for each set of records so I can insert them in to a table in database. I added your code in and got the comma delimited values, but I really need them in separate groups based on their id.
- Wed Aug 29, 2007 7:08 pm
- Forum: PHP - Code
- Topic: Arrays and Forms Help
- Replies: 5
- Views: 330
Arrays and Forms Help
I need help figuring out how to name input tags if I want to create and array with the information to so I can input the values into a table in a databse. I have a list of players that have a last name, first name, jersey number, and postion. I gave all the input tags that same name to start with. <...