Jump to content

Array from Post


Ryflex

Recommended Posts

It wouldn't work because you would have undefined indexes. Your code is telling the server to look for a POST var called "$n[0]" not the actual value of $n[0].

 

Try this:

 

$amount	= array(0 => $_POST[$n[0]], 1 => $_POST[$n[1]], 2 => $_POST[$n[2]], 3 => $_POST[$n[3]]);

Link to comment
https://forums.phpfreaks.com/topic/221990-array-from-post/#findComment-1148699
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.