次の Php コードでは、jQuery スクリプトから $val 変数に格納されている値にアクセスして、ajax 呼び出しを送信できるようにします。テーブルの各行について、$val には一意の値が含まれているため、ポスト リクエストに送信できるようにするには、一意の値にアクセスする必要があります。
<?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 ?
どんな助けでも大歓迎です。