在下面的PHP代碼中,我想從我的jQuery腳本中訪問存儲在$ val變量中的值,以便能夠發送ajax調用。 對於每個錶行$ val將包含唯一值,我需要訪問唯一的 值能夠發送到我的發佈請求。如何在JQuery中訪問php數據?
<?php
if($batch_query != null){
$i = 0;
foreach($batch_query->result_array() as $row){
$val = "'".$row['course_id'].",".$row['center_id'].",".$row['batch_id']."'";//These values are coming from the server side and I need to send it to the controller for the Ajax.
echo "<tr>";
echo "<td>".$row['course_name']."</td>";
echo "<td>".$row['center_name']."</td>";
echo "<td>".$row['batch_name']."</td>";
echo "<td>"."<button id= \"btnnumber_$i\" class='btn info toggler' value=$val>Show Info <i class='icon-arrow-down'></i></button>"."</td>";// here I am using the value attribute and assigning it the value $val.
}
}
?>
這裏是我的JQuery
$(function(){
$.post('/path /to/ my /controller', {value: $val}).done(function(data){
});
});
How to get those values in the $val ?
任何幫助將得到高度讚賞。
它只是一個字符串,對不對? – Samy 2013-03-13 09:01:58
$ .post('/ path/to/my/controller',{value:<?php echo $ val;?>}) – Pete 2013-03-13 09:02:52
@Samy是它只是一個字符串的東西。 – 2013-03-13 09:03:12