Jump to content

[SOLVED] help?


shaunbaird

Recommended Posts

Hiya, wanting to implement banners on my site for my members.:

if (mysql_num_rows($res) != 0) {

echo("<p><font size=2><b>You must host these banners yourself!<br>Right click on the image and choose 'Save Picture As..'</b></font></p>");

for ($i = 0; $i < mysql_num_rows($res); $i++) {

    $bid = mysql_result($res, $i, "id");

    $imageurl = mysql_result($res, $i, "imageurl");

    $n = $i + 1;

    echo("<p><b><font face=$fontface size=2>Banner $n:</b><br><a href=\"$site_url/?rid=$usrid\" target=\"_blank\" onMouseOver=\"window.status='Right click here and choose \'Save Picture As..\''; return true\" onMouseOut=\"window.status='$title'\"><img src=\"$imageurl\" border=0></a><br></p><textarea cols="70" rows="6" wrap="off" style="font-size: 11px;"><a href=\"$site_url/?rid=$usrid\" target=\"_blank\" target="_blank"><img src=\"$imageurl\" border="0" alt="Hitinsomnia manual traffic exchange with geographical targeting" />");

</a></textarea>

 

 

 

 

 

 

 

 

}

}

include($mfoot);

mysql_close;

exit;

?>

 

 

 

showing the banner itself works just fine but recently I added the bit to add the code in a box under the banner so members can see an affiliate banner and the html code under it to post into other websites.

 

just keep getting this error now:

Parse error: syntax error, unexpected T_LNUMBER in /home/XXXXXXXX/public_html/XXXXXXX/refbanners.php on line 25

 

 

here is the full code from this page:

<?php

session_start();

include("phpinc.incfile.php");

include($varsfile);

include($funcsfile);

include($authfile);

mysql_connect($ssqldb_rhost, $ssqldb_ruser, $ssqldb_rpswd);

mysql_select_db($ssqldb_exchname);

$http_ref_page = $_SERVER['HTTP_REFERER'];

$res = checkauth();

if ($check_referrers == 1) {

checkRefer($http_ref_page);

}

$usrid = mysql_result($res, 0, "id");

$res = mysql_query("select * from refban order by id asc");

include($mhead);

echo("<p><font size=2>Your referring URL:<br><input type=text size=40 value=\"$site_url/?rid=$usrid\"></b></p>");

echo("<p></p>");

if (mysql_num_rows($res) != 0) {

echo("<p><font size=2><b>You must host these banners yourself!<br>Right click on the image and choose 'Save Picture As..'</b></font></p>");

for ($i = 0; $i < mysql_num_rows($res); $i++) {

    $bid = mysql_result($res, $i, "id");

    $imageurl = mysql_result($res, $i, "imageurl");

    $n = $i + 1;

    echo("<p><b><font face=$fontface size=2>Banner $n:</b><br><a href=\"$site_url/?rid=$usrid\" target=\"_blank\" onMouseOver=\"window.status='Right click here and choose \'Save Picture As..\''; return true\" onMouseOut=\"window.status='$title'\"><img src=\"$imageurl\" border=0></a><br></p><textarea cols="70" rows="6" wrap="off" style="font-size: 11px;"><a href=\"$site_url/?rid=$usrid\" target=\"_blank\" target="_blank"><img src=\"$imageurl\" border="0" alt="xxx" />");

</a></textarea>

 

 

 

 

 

 

 

 

}

}

include($mfoot);

mysql_close;

exit;

?>

Link to comment
Share on other sites

You have unescaped quotes in this line.

echo("<p><b><font face=$fontface size=2>Banner $n:</b><br><a href=\"$site_url/?rid=$usrid\" target=\"_blank\" onMouseOver=\"window.status='Right click here and choose \'Save Picture As..\''; return true\" onMouseOut=\"window.status='$title'\"><img src=\"$imageurl\" border=0></a><br></p><textarea cols="70" rows="6" wrap="off" style="font-size: 11px;"><a href=\"$site_url/?rid=$usrid\" target=\"_blank\" target="_blank"><img src=\"$imageurl\" border="0" alt="xxx" />");

 

Notice that you use " to start and end a string to be echoed. If you need to use " inside this string, you have to put \ before it so it look like \"

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.