penso ke usare il php sia la via + facile...
cmq se ti può interessare ti posto un esempio x far cambiare la destinazione di un iframe:
[code:1:8203003e86]
<html>
<head>
<title>Esempio</title>
</head>
<body>
<a href="javascript:cambia(1)"& gt;Clicca x cambiare destinazione all'iframe</a><BR>
<iframe name=fm1 border=1 width=200 height=200 src="http://evcz.altervista.org"></iframe>
<BR>
<!-- funz x il cambio -->
<script>
function cambia(par)
{
if (par==1)
{
document.all.fm1.src="http://www.altervista.org";
}
}
</script>
</body>
</html>
[/code:1:8203003e86]
... in pratica puoi usare anke gli iframe come qlsiasi altro elemento jscript....
There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...