Hola,
Quiero llamar a una variable php desde una funcion javascript.
Quiero q se abra una ventana pequeña q tiene una foto cuyo nombre debe coger de una base de datos y no me sale.
Tengo esto:
<?php
$foto_g=$row["referencia"].".jpg";
?>
<script language="javascript">
function abre_ventana(){
v=window.open("","","width=410 px","height=280 px","toolbar=no","location=no","directories=no","s tatus=no","menubar=no","scrollbars=no","resizable= no");
v.document.write("<html><head><title>RURAL PRUDEN</title></head><body topmargin=0 leftmargin=0><img src=fotos/<?php echo global $foto_g; ?> ></body></html>");
}
</script>