$ _POST hiçbir değeri

2 Cevap php

Hiçbir değer $_POST['addEdit'] değişkeni gönderilir, lütfen yardım.

HTML kodu:

<form name='frm' method='POST' action=''>
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr class="heading">
<td style="width:5px;"><input type="checkbox" name='check_all' onClick='checkAll();' /></td>
<td class="head">App Name</td>
.
.
<?php
//some embeded php (here is the addEdit component)
.
.
echo '
<td id="row_'.$row['id'].'" style="display: none;">
 <input type="text" name="addEdit" id="addEdit_row_'.$row['id'].'" value="" size="4"/></td>
<td>
        <input type="submit" name="add" value="A"  onClick="addObs('.$row['id'].'); return false;"/>
';
</td>
.
.//end oh php code
?>
<!-- end of html code -->

PHP kodu:

if(isset($_POST['add']))
{
 //echo 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa';
 if (isset($_POST['addEdit']))
 {
  echo 'post: '.$_POST['addEdit'];
 }
}

2 Cevap

Kapatmak <form> etiketlemek mi?

: Çalışın

var_dump($_POST);

Denemek

<form name='frm' method='POST' action='<?php echo $_SERVER['PHP_SELF']?>'>