Jump to content

Inserting Array into MySQL


Adamhumbug
Go to solution Solved by Adamhumbug,

Recommended Posts

I have created an array that gets passed to php through ajax.

case 'createNewGame':
			exit(createNewGame($_POST['venue'], $_POST['gamedate'], $_POST['home'], $_POST['away'], $_POST['hts']));
		break;

hts is the array

i tried to insert this way

function createNewGame($venue, $gamedate, $home, $away, $homeSquad){

$qry = "INSERT INTO game_squad (game_id, player_id) VALUES (?,?)";
	$stmt = $conn->prepare($qry);
	
	for($i = 0; $i < count($homeSquad); $i++){
		$stmt->bind_param('ii', $gameID, $homeSquad[$i]);
		$stmt -> execute();
	}
}

there is more going on in here with the other variables.

When i console log the array before it is passed into php i can confirm i am getting an array:

Array [ "20", "21" ]

A point in the right direction here would be appreciated.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.