Jump to content

PHP syntaxembedding code into script


lookee

Recommended Posts

I'm attempting to embed the following code into a .php file, but every time I do, I get a syntax error.

 

<div id="leaderboard_bridge"></div><script src="http://xs.mochiads.com/static/pub/swf/leaderboard.js" type="text/javascript"></script><script type="text/javascript">Mochi.addLeaderboardIntegration({partnerID: "x34551194587393"});</script>

 

The error I get is

 

Parse error: syntax error, unexpected '<' in /home/jumpodin/public_html/components/com_puarcade/puarcade.php on line 170

 

Basically, I don't know how to integrate this bit of code into my pre-existing .php script.  I can't remove the <.  I tried putting a ; at the end, but that doesn't work either.

 

Any help would be greatly apprecaited.

Link to comment
https://forums.phpfreaks.com/topic/133030-php-syntaxembedding-code-into-script/
Share on other sites

you need to echo it like

echo '<div id="leaderboard_bridge"></div><script src="http://xs.mochiads.com/static/pub/swf/leaderboard.js" type="text/javascript"></script><script type="text/javascript">Mochi.addLeaderboardIntegration({partnerID: "x34551194587393"});</script>';

 

Scott.

replace it with

echo '<div id="leaderboard_bridge"></div><script src="http://xs.mochiads.com/static/pub/swf/leaderboard.js" type="text/javascript"></script><script type="text/javascript">Mochi.addLeaderboardIntegration({partnerID: "x34551194587393"});</script>';

 

Scott.

And when I try to echo it...

 

echo "<div id="leaderboard_bridge"></div><script src="http://xs.mochiads.com/static/pub/swf/leaderboard.js" type="text/javascript"></script><script type="text/javascript">Mochi.addLeaderboardIntegration({partnerID: "x4455839574839567674"});</script>";

?>

 

The closing php tag doesn't turn red again... something is missing, and I can't figure out what... something in the embed code seems to be throwing off the syntax

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.