ho il seguente codice in nell'head del file default.php:
<head>
<title>Emptypage</title>
<style type="text/css">
@import url("emptystyle.css");
</style>
<script language="javascript" >
function avanti(val) {
document.form1.azione.value="avanti";
document.form1.submit();
}
function indietro(val) {
document.form1.azione.value="indietro";
document.form1.submit();
}
function collegamento(valore) {
document.form1.frame.value=0;
document.form1.galleria.value=valore;
document.form1.submit();
}
function popup(valore,width,height)
{
document.form1.galleriadett.value=valore;
window.open('dettaglio.php?galleriadett='+valore,' ','width ='+width+',height='+height+',left=1,top=1 scrollbars=0');
//this.form1.action="dettaglio.php";
//this.form1.target="_blank";
//this.form1.submit();
}
</script>
</HEAD>
e il seguente codice funiona in mozzilla ma non in explorer 6:
echo('[img].$src.[/img]'."\n");
perchè?
grazie.