Js变量为PHP变量

时间:2014-03-05 05:27:12

标签: javascript php

我要发布多个数据,但我的代码不起作用,你可以帮我找错误

PHP代码是:在这里是正确的$ _POST ['product_more'];?

if(isset($_POST['submit'])){
for($i=0;$i<$product_more_count1;$i++){
$common->name =  $_POST['product_more<?php echo $i ?>'];
$common->en_name=$_POST['product_more_value<?php echo $i ?>'];

$common->savequickSelect();
}
} 

我的JS代码是:我在这里点击添加底部这个js添加输入表单。在这里我可以使用PHP吗?我已经习惯使用php了。

<script type="text/javascript">
var product_more_count=1;
$(document).ready(function() { 
$('.add_product_more').click(function() {
if(product_more_count<10)
{
$(".product_more_ul").append('<li style="list-style:none">'
                          + '<input placeholder="<?php if($_SESSION['lang']=='en') echo 'Eg : Color, size';

else echo 'Өнгө, Хэмжээ г/м';
 ?>" name="product_more[]" type="text"  style="margin-bottom:5px;" />&nbsp;&nbsp;<input placeholder="<?php if($_SESSION['lang']=='en') echo 'mangolian';

else echo 'mangolian';
 ?>" name="product_more_value[]" type="text" style="margin-top:0px;" />'
                          + '<a href="#" class="remove_product_more" ><img src="assets/images/removebtn.jpg" width="66" height="20" /></a>'
                          + '</li>');
product_more_count+=1;
<?php $product_more_count1=$product_more_count1+1;?>
}
return false;
});
$('.remove_product_more').live('click', function() {
$(this).parent().remove();
product_more_count-=1;
<?php $product_more_count1=$product_more_count1-1;?>
return false;
});
});
</script>

输入表单是:在这里我试图用户可以添加输入字段为希望

<form action="quick1.php" method="post">
<table width="621" class="form">
<tr>
  <td > More Details:  </td>
  <td >
<ul>
     <li  style="list-style:none">
<input name="product_more<?php echo $product_more_count1 ?>" type="text"/>

<input name="product_more_value<?php echo $product_more_count1 ?>" type="text"/>
     </li>
</ul>
<a href="#" class="add_product_more"><img src="assets/images/add1btn.jpg" width="47" height="20" /></a></td>

</tr>
<tr>
<td colspan="2"><input value="" type="submit" name="submit" id="prod_submit" class="submit" /></td>
</tr>
</table>
</form>

0 个答案:

没有答案