Could someone tell me how to pass a PHP variable to the Javascript code. I know there are already many posts about this and I already tried to apply only that I should be doing something wrong so I decided to ask for help here.
<?php
$ligacao = mysqli_connect("localhost", "root", "", "publicidades");
if (mysqli_connect_errno()) {
echo "Erro na liga��o MySQL: " . mysqli_connect_error();
}
if($_POST["categoria"]){
$sql_img = "SELECT distinct p.id_publicidade, p.nome, p.descricao, p.categoria, p.visualizacoes, p.estado, l.id_utilizador FROM publicidade p, linhapub l WHERE p.id_publicidade = l.id_publicidade and estado = 1 AND categoria IN (".$_POST["categoria"].") ORDER BY visualizacoes DESC";
$imagem = mysqli_query($ligacao, $sql_img);
$objeto = mysqli_fetch_assoc($imagem);
$attempts = $objeto["descricao"];
$estado = $objeto["estado"];
$utilizador = $objeto["id_utilizador"];
$visu = "SELECT visualizacoes FROM publicidade WHERE id_publicidade ='".$objeto["id_publicidade"]."'";
$obj = mysqli_query($ligacao, $visu);
$res = mysqli_fetch_assoc($obj);
$final = $res["visualizacoes"];
$num_post = mysqli_num_rows($imagem);
if( $num_post ) {
if($estado){
if($final>0){
echo "<img src=\"$attempts\" alt=\"Não deu!!\">";
$alterar = "UPDATE publicidade SET visualizacoes = visualizacoes-1 WHERE descricao = '$attempts'";
$alteracao = mysqli_query($ligacao, $alterar);
}else{
echo 'O seu tempo de antena acabou';
}
}
I want to pass the variable $utilizador
to this Javascript function that is on another page:
<script type="text/javascript">
var autoLoad = setInterval(
function ()
{
var query="";
for(var i=0; i<array.length; i++){
query+= (i==0?"":",") + "'"+array[i]+"'";
}
$.ajax({
type: "POST",
url: "load_post.php",
data: {categoria:query},
success: function(dados){
alert(dados);
$('#load_post').html(dados);
$('#load_post').fadeOut(5000);
Lista(variavel);
}
});
$('#load_post').fadeIn(5000);
}, 5000);
</script>
I then when I have the variable I want to call it in function Lista()
I was trying to send through the URL of $utilizador
and then do the GET on the other page but for some reason it does not work.
Thank you.