Servus,
bekannter Weise startet man Echo mit ' und schließt mit ' bzw. " und ". Nun habe ich aber ein Javascript, wo bereits mit " und ' gearbeitet wird.
Wie bau ich das jetzt ein?
Code
<a href="index.php">
[img]http://www.coolstart.de/images/start1.PNG[/img]</a>
<a href="shop.php">
[img]http://www.coolstart.de/images/shopping1.PNG[/img]</a>
<a href="routenplaner.php">
[img]http://www.coolstart.de/images/routenplaner1.PNG[/img]</a>
<a href="telefonbuch.php">
[img]http://www.coolstart.de/images/telefonbuch1.PNG[/img]</a>
<a href="sonstiges.php">
[img]http://www.coolstart.de/images/sonstiges1.PNG[/img]</a>
Wenn ich
Code
echo '<a href="index.php">
[img]http://www.coolstart.de/images/start1.PNG[/img]</a>
<a href="shop.php">
[img]http://www.coolstart.de/images/shopping1.PNG[/img]</a>
<a href="routenplaner.php">
[img]http://www.coolstart.de/images/routenplaner1.PNG[/img]</a>
<a href="telefonbuch.php">
[img]http://www.coolstart.de/images/telefonbuch1.PNG[/img]</a>
<a href="sonstiges.php">
[img]http://www.coolstart.de/images/sonstiges1.PNG[/img]</a>'
oder
Code
echo "<a href="index.php">
[img]http://www.coolstart.de/images/start1.PNG[/img]</a>
<a href="shop.php">
[img]http://www.coolstart.de/images/shopping1.PNG[/img]</a>
<a href="routenplaner.php">
[img]http://www.coolstart.de/images/routenplaner1.PNG[/img]</a>
<a href="telefonbuch.php">
[img]http://www.coolstart.de/images/telefonbuch1.PNG[/img]</a>
<a href="sonstiges.php">
[img]http://www.coolstart.de/images/sonstiges1.PNG[/img]</a>"
Bei beiden Version ist logischer Weise ein Fehler drin. Wie vereinbare Ich also Javascript mit PHP-Echo?
Vielen Dank schon mal im Vorraus![/code]