PDA

View Full Version : Inserting array into database


Lionel
12-29-2005, 02:10 AM
I have this for retrieving multiple checkboxes values (I never know how many because they are dynamically generated)

$foo2 = $_POST['predplayer2'];
if (count($foo2) > 0) {
for ($i=0;$i<count($foo2);$i++) {
$tplayer2="$foo2[$i]|";
}
}

When I echo $tplayer2;

I have player1|player2|player3| etc...

when I do my insert, only one value goes in there player1|

I do ...,'$tplayer2',...

joelabq
12-29-2005, 02:40 AM
What does you insert code look like?

Joel

Lionel
12-29-2005, 03:33 AM
Thanks Joel, I have a talent to complicate matters. I found it with the pointer you gave me on serialize, very, very simple indeed:

$tplayer1 = serialize($_POST['predplayer1']);

Serializing them to put them in database was easy. Unserializing them is fine too. However placing those values in their boxes and checking off the proper checkboxes is no picnic. this image is the page the member gets if he wants to edit the values. Putting the score is a piece of cake, but the section below... geeeeeeeee!!!!!!