Hallo
Glaube das meine Frage etwas primitiv klingt aber trotzdem habe ich schon alles ausprobiert und irg wie klappts nich, ich habe ein php formular geschrieben, dass links aus mysql erstellt und dann mithilfe eines javascripts in 2 verschiedene iframes lenkt.
Nur weiss ich jetzt nicht, ob in der echo anweisung wo der html, javascript ausgegebn wird ' oder " verwendet werden soll..
Ich poste euch mal mein Quelltext:
In der Form funktioniert es nicht.
Bitte um schnelle Hilfe.. Danke im Vorraus !!
Glaube das meine Frage etwas primitiv klingt aber trotzdem habe ich schon alles ausprobiert und irg wie klappts nich, ich habe ein php formular geschrieben, dass links aus mysql erstellt und dann mithilfe eines javascripts in 2 verschiedene iframes lenkt.
Nur weiss ich jetzt nicht, ob in der echo anweisung wo der html, javascript ausgegebn wird ' oder " verwendet werden soll..
Ich poste euch mal mein Quelltext:
PHP:
<head><script type="text/javascript">
<!--
function frameausgabe(URL1,F1,URL2,F2,URL3,F3,URL4,F4,URl5,F5,URL6,F6,URL7,F7) {
Frame1=eval("parent."+F1);
Frame2=eval("parent."+F2);
Frame3=eval("parent."+F3);
Frame4=eval("parent."+F4);
Frame5=eval("parent."+F5);
Frame6=eval("parent."+F6);
Frame7=eval("parent."+F7);
/*(Der dritte Frame ist optional)*/
Frame1.location.href = URL1;
Frame2.location.href = URL2;
Frame3.location.href = URL3;
Frame4.location.href = URL4;
Frame5.location.href = URL5;
Frame6.location.href = URL6;
Frame7.location.href = URL7;
/*(Der dritte Frame ist optional)*/}
//-->
</script>
</head>
<?
include 'sessionhelpers.inc.php';
$sql = "SELECT `UserID`,`UserName` FROM `users`";
$result = mysql_query($sql);
while($row = mysql_fetch_array($result)){
echo "<tr><td align='center'><font face='Arial, Helvetica, sans-serif'><a href='javascript:frameausgabe('show_profile.php?userid=".$row['UserID']."','content','Member/show_pic.php?userid=".$row['UserID']."','box')' >".$row['UserName']."</a></font><br>";
}
?>
</html>
In der Form funktioniert es nicht.
Bitte um schnelle Hilfe.. Danke im Vorraus !!
Zuletzt bearbeitet: