Per JS dynamische<ipnput> Felder per $_POST Abfragen!?

Du sagst es, ich glaube es aber nicht.

Lt. deinen Angaben sieht das Formular so aus:
Code:
<form name="newcustomer" id="newcustomer" action="index.php?tpl=new_customer" method="post">
<div style="display: block;" class="valueCard" id="product">
<table>
<tbody>
<tr>
<td>Produktwahl: *</td>
<td><select size="1" id="customer_product1" name="customer_product[]" onchange="loadArticleForm(this, 'customer_script');" onfocus="loadArticles(document.getElementById('customer_master').value, this);"><option value="4">Test (Nr. 1001)</option></select></td>
</tr>
<tr>                
<td colspan="2">

<div id="customer_script">
<table>
<tbody>
<tr>
<td>Vorname:</td>
<td><input name="TEXT_1" id="TEXT_1" value="" size="40" maxlength="100" type="text">
</td>
</tr>
<tr>
<td>Nachname:</td>
<td><input name="TEXT_2" id="TEXT_2" value="" size="40" maxlength="100" type="text">
</td>
</tr>
</tbody>
</table>
</div>

</td>
</tr>
<tr>
<td></td>
<td align="left"><input value="Produkt hinzufügen" onclick="addInput('product')" ;="" type="button"></td>
</tr>
</tbody>
</table>
<div>
</form>

Wenn ich dies Formular sende, enthält $_POST jenes:
Code:
Array
(
    [customer_product] => Array
        (
            [0] => 4
        )

    [TEXT_1] => 
    [TEXT_2] => 
)

Sorry, aber wenn du nicht die Karten auf den Tisch legen kannst, muss ich meinen Joker für mich behalten.:(
 
Schade, dass es keine Lösung gibt. Meine XmlHttpRequest-Post-Variablen tauchen in PHP auch nicht in $_POST auf und ich weiß nicht warum. Firebug zeigt euindeutig, dass was im Post ist, aber in PHP ist das Array leer.
 
Zurück