I've made av web shop, and a web page in the admin section edits the properties for a chosen product. Some products has links to LOTS of other stuff, so the form that is shown is dynamically generated with php. For example, a simple hexagon bolt fits to lots of stuff, so there are a long list of connected products for that bolt. All the connected products are shown in input form fields. Simplyfied the PHP gereating the form looks like this:
$i = 0;
foreach($connectedProduct AS $c)
{
echo '<input type="text" name="connectedProducts[$i][ProductID]" value="$value" />';
$i++;
}
Saving the products properties works fine for almost all products. For products having lots of connections, something like >400, the complete array "connectedProducts" is not transmitted to the web server when the form is submitted. The form uses HTTP POST. Debugging the script recieving the POST data shows that $_POST does not contain a "connectedProducts" array at all.
I'm a bit confused and lost... anybody got any ideas?