php değişken jquery geçti ve başka bir php sayfasına $ _GET için olsun

0 Cevap php

Ben aşağıdaki gibi genellikle genişletilmiş hikayenin haberleri gitmek, bir süre ile değişken geçer:

while ($noticias = @mysql_fetch_array($sql)) {
$sqll = mysql_query("SELECT * FROM categorias WHERE id='".$noticias['categoria']."'");
$datos = mysql_fetch_array($sqll);
<div class="leermas">[COLOR="red"]<a href="noticias.php?n='.$noticias['id'].'">[/COLOR]<strong>(Leer m&aacute;s)</strong></a></div>
</div></div>';

}

but now I want is to load the content of the page in a div and I usually when I don't have to pass php variable in this way: the link for load content

<a  class="recursostopwebjqampliada" href="">

Ben harici bir dosya içinde var jQuery kodu load.js çağırdı

$(document).ready(function() {  
    $(".recursostopwebjqampliada").live("click", function(){ 

$("div#main2").load("topwebjq_ampliada.php?n='.$noticias['id'].'");//AQUI DONDE ESTA LA VARIABLE
     });  
 });

ve ben gibi değişken olsun div yükler sayfa aşağıdaki gibidir:

$id = $_GET['n'];  

the problem is that jQuery does not read the file php load.js then how I can fix it

load("topwebjq_ampliada.php?n='.$noticias['id'].'"

0 Cevap