Я хочу передать переменную JavaScript в PHP, это мой код:
$('.info-button').on('click', function() {
var flag = $(this).data('flag');
if (flag) {
var index3 = $(this).parent().parent().parent().find('img').attr('src');
console.log(index3);
$('.inner').css("display", "block");
} else {
$('.inner').css("display", "none");
}
$(this).data('flag', !flag);
});
Как получить index3 - динамическую переменную из PHP?
Я пытался с:
<?php
echo "<script>document.writeln(index3);</script>";
?>
Но я получаю index3 не определен