Здравствуйте.
День уже ломаю голову помогите, есть таблица которая делает выборку из БД
<table cellpadding="0" cellspacing="0" border="0" class="display mobile_dt1 " id="dt2">
<thead>
<tr>
<th class="essential">A</th>
<th class="essential">B</th>
<th>Операции</th>
</tr>
</thead>
<tbody>
<?php
$stmt = "SELECT a, b FROM test ORDER BY startdate desc";
$result = mysql_query( $stmt, $conn );
while($row = mysql_fetch_array($result, MYSQL_ASSOC)){
?>
<tr class="gradeX">
<td><?php echo $row['a'];?></td>
<td><?php echo $row['b']?></td>
<td>
<a href="#" class="sepV_a fd2" title="Изменение"><img src="img/ico/pencil_gray.png" alt="" /></a>
<!--a href="#" class="sepV_a" title="Просмотр"><img src="img/ico/preview_gray.png" alt="" /></a>
<a href="#" title="Удалить"><img src="img/ico/trashcan_gray.png" alt="" /></a-->
</td>
</tr>
<?php
}
?>
</tbody>
</table>
Как видете есть поле Операции которая при нажатии вызивает js файл в котором следующее:
prth_dialogs = {
init: function(){
//notification with simple countdown (open on page load)
//modal boxes
$(".fd1").fancybox({
'overlayOpacity' : '0.2',
'transitionIn' : 'elastic',
'transitionOut' : 'fade',
'autoDimensions' : false,
'width' : '50%',
'height' : '100%'
});
$(".fd2").fancybox({
href : 'search_result.php',
ajax : {
type : "POST",
data:{search_item : 'Вот здесь что указать не знаю'},
success: function( data ) {
console.log( data );
}
},
'overlayOpacity' : '0.2',
'transitionIn' : 'elastic',
'transitionOut' : 'fade'
});
}
};
Как мне передать $row['a'] в JS файл? Потому что JS файл дальше должен передать переменую в другой PHP файл