Jump to content

Recommended Posts

I'm trying to write a code for a profile on my game site. However I keep getting this error.

 

Parse error: syntax error, unexpected '<' in /home/blt3/public_html/profile2.php on line 120

 

This is the script im working with...

 

<?php
$_SESSION['lovetap'] = 0;
include "globals.php";
$_GET['u'] = abs((int) $_GET['u']);
if(!$_GET['u'])
{
print "Invalid use of file";
}
else
{
$q=$db->query("SELECT u.*,us.*,c.*,h.*,g.*,f.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN cities c ON u.location=c.cityid LEFT JOIN houses h ON u.maxwill=h.hWILL LEFT JOIN gangs g ON g.gangID=u.gang LEFT JOIN fedjail f ON f.fed_userid=u.userid WHERE u.userid={$_GET['u']}");
if($db->num_rows($q) == 0)
{
print "Sorry, we could not find a user with that ID, check your source.";
}
else
{
$r=$db->fetch_row($q);
if($r['user_level'] == 1) { $userl="Member"; } else if($r['user_level'] == 2) { $userl="Admin"; } else if ($r['user_level'] == 3) { $userl="GM"; } else if($r['user_level'] == 0) { $userl="NPC"; }  else {$userl="FM"; }
$lon=($r['laston'] > 0) ?date('F j, Y g:i:s a',$r['laston']) : "Never";
$sup=date('F j, Y g:i:s a',$r['signedup']);
$ts=$r['strength']+$r['agility']+$r['guard']+$r['labour']+$r['IQ'];
$d="";
if($r['laston'] > 0)
{
$la=time()-$r['laston'];
$unit="seconds";
if($la >= 60)
{
$la=(int) ($la/60);
$unit="minutes";
}
if($la >= 60)
{
$la=(int) ($la/60);
$unit="hours";
if($la >= 24)
{
$la=(int) ($la/24);
$unit="days";
}
}
$str="$la $unit ago";
}
else
{
  $str="--";
}
if($r['last_login'] > 0)
{
$ll=time()-$r['last_login'];
$unit2="seconds";
if($ll >= 60)
{
$ll=(int) ($ll/60);
$unit2="minutes";
}
if($ll >= 60)
{
$ll=(int) ($ll/60);
$unit2="hours";
if($ll >= 24)
{
$ll=(int) ($ll/24);
$unit2="days";
}
}
$str2="$ll $unit2 ago";
}
else
{
  $str2="--";
}
if($r['donatordays'] > 0)
{
if($r['race'] == "Pirate")
{
	$color = "<font color='red'>";
	$ecolor = "</font>";
	$ccode = "<a alt='Elite Pirate: {$r['donatordays']} Days Left' title='Elite Pirate: {$r['donatordays']} Days Left'>";
	$cend = "</a>";
}
else if($r['race'] == "Ninja")
{
	$color = "<font color='blue'>";
	$ecolor = "</font>";
	$ccode = "<a alt='Stealth Ninja: {$r['donatordays']} Days Left' title='Stealth Ninja: {$r['donatordays']} Days Left'>";
	$cend = "</a>";
}
}
else
{
if($r['race'] == "Pirate")
{
	$color = "<font color='light yellow'>";
	$ecolor = "</font>";
	$ccode = "";
	$cend = "";
}
else if($r['race'] == "Ninja")
{
	$color = "<font color='white'>";
	$ecolor = "</font>";
	$ccode = "";
	$cend = "";
}
}

require "bb.php";

$bbc = new bbcode;
$buser = $db->query("SELECT * FROM profile_signature WHERE userid = {$r['userid']}");
$buserq = $db->fetch_row($buser);
if($buserq['signature']) $view_signature = $bbc->bbcode_parse($buserq['signature']);
else $view_signature = "No Signature!";

if($r['laston'] >= time()-15*60) { $on="<font color=green><b>[Online]</b></font>"; } else { $on="<font color=red><b>[Offline]</b></font>"; }
if($r['display_pic'])

<table width='100%'>
<td class=contentcontent width='25%' valign='top'>
{
print "<img src='{$r['display_pic']}' alt='User Display Pic' title='User Display Pic' />";
}
else
{
print "This user has no display pic!";
}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Name:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
$ccode$color{$r['username']}$ecolor$cend</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Health:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
{$r['hp']}/{$r['maxhp']}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Type:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
$userl</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Race:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
{$r['race']}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Gender:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
{$r['gender']}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Fourm Posts:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
{$r['posts']}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Level:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
{$r['level']}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Money:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
\${$r['money']}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Age:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
{$r['daysold']}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Last Active:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
$str</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Online:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
$on</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Gang:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
";
if($r['gang'])
{
print "<a href='gangs.php?action=view&ID={$r['gang']}'>{$r['gangNAME']}</a>";
}
else
{
print "N/A";
}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
City:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
{$r['cityname']}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
House:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
{$r['hNAME']}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Hospital Status:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
if($r['hospital'])
{
print "<font color=red>{$r['hospital']} minutes.</font>";
}
else
{
print "Not in Hospital";
}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Prison Status:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
if($r['jail'])
{
print "<font color=red>{$r['jail']} minutes.</font>";
}
else
{
print "Not in Prison";
}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Referals:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>
";
$rr=$db->query("SELECT * FROM referals WHERE refREFER={$r['userid']}");
print $db->num_rows($rr);
print "</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Friends:</td>
</td>
<td class=contentcontent width='30%' valign='top'>
{$r['friend_count']}</td>
</td>
</td></table>
<br<br><br>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
print "[<a href='mailbox.php?action=compose&ID={$r['userid']}'>Send Mail</a>]";</td>
</td>
        <td class=contentcontent width='20%' valign='top'>
print "[<a href='sendcash.php?ID={$r['userid']}'>Send Cash</a>]";</td>
</td>
<td class=contentcontent width='20%' valign='top'>
if($set['sendcrys_on'])
{
print "[<a href='sendcrys.php?ID={$r['userid']}'>Send Points</a>]";
}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
if($set['sendbank_on'])
{
if($ir['bankmoney'] >= 0 && $r['bankmoney'] >= 0)
{
print "[<a href='sendbank.php?ID={$r['userid']}'>Bank Xfer</a>]";
}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
if($ir['cybermoney'] >= 0 && $r['cybermoney'] >= 0)
{
print "[<a href='sendcyber.php?ID={$r['userid']}'>CyberBank Xfer</a>]<br /><br />";
}
}</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
print "
[<a href='attack.php?ID={$r['userid']}'>Attack</a>]";</td>
</td>
        <td class=contentcontent width='20%' valign='top'>
print "[<a href='contactlist.php?action=add&ID={$r['userid']}'>Add Contact</a>]";</td>
</td>
<td class=contentcontent width='20%' valign='top'>
if($ir['donatordays'] > 0)
{
print "
[<a href='friendslist.php?action=add&ID={$r['userid']}'>Add Friends</a>]";
}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
if($ir['donatordays'] > 0)
{
print "
[<a href='blacklist.php?action=add&ID={$r['userid']}'>Add Enemies</a>]";
}</td>
</td>
<td class=contentcontent width='20%' valign='top'>
</td>
</td>
</td></table>
<br><br>
<table width='100%'>
<td class=contentcontent width='30%' valign='top'>
if($ir['user_level'] == 2 || $ir['user_level'] == 3 || $ir['user_level'] == 5)
{
print "<br /><br />
[<a href='jailuser.php?userid={$r['userid']}'>Jail</a>]<br /><br />
[<a href='mailban.php?userid={$r['userid']}'>MailBan</a>]";
}</td>
</td>
        <td class=contentcontent width='70%' valign='top'>
if($ir['user_level'] == 2 || $ir['user_level'] == 3 || $ir['user_level'] == 5)
{
  $r['lastiph']=@gethostbyaddr($r['lastip']);
  $r['lastiph']=checkblank($r['lastiph']);
  $r['lastip_loginh']=@gethostbyaddr($r['lastip_login']);
  $r['lastip_loginh']=checkblank($r['lastip_loginh']);
  $r['lastip_signuph']=@gethostbyaddr($r['lastip_signup']);
  $r['lastip_signuph']=checkblank($r['lastip_signuph']);
print "<h3>Internet Info</h3><table width='100%' border='0' cellspacing='1' class='table'>
<tr><td></td><td class='h'>IP</td><td class='h'>Hostname</td></tr>
<tr><td class='h'>Last Hit</td><td>$r[lastip]</td><td>$r[lastiph]</td></tr>
<tr><td class='h'>Last Login</td><td>$r[lastip_login]</td><td>$r[lastip_loginh]</td></tr>
<tr><td class='h'>Signup</td><td>$r[lastip_signup]</td><td>$r[lastip_signuph]</td></tr></table>";
print "<form action='staffnotes.php' method='post'>
Staff Notes: <br />
<textarea rows=7 cols=40 name='staffnotes'>{$r['staffnotes']}</textarea>
<br /><input type='hidden' name='ID' value='{$_GET['u']}' />
<input type='submit' value='Change' /></form>";
}
else
{
print " ";
}</td>
</td>
</td></table><br><br>

<td align=center colspan=3>SIGNATURE</td></tr>
<tr>
<td colspan=3>$view_signature</td>
</tr>
</table>";
}
}
function checkblank($in)
{
  if(!$in) { return "N/A"; }
  return $in;
}
$h->endpage();
?>

Link to comment
https://forums.phpfreaks.com/topic/178874-simple-syntax-error/
Share on other sites

Goto line 120 like it tells you and you will see...

 

if($r['display_pic'])

<table width='100%'>

 

That is mixing HTML with PHP, which will not work. I can see multiple other instances of the same problem futher down the code.

 

Either you will need to be closing the php tag..

 

if($r['display_pic'])
?>
<table width='100%'>

 

or alternatively you will need to be echo'ing it out...

 

if($r['display_pic'])

echo "<table width='100%'>

 

I'm not sure which will be right in that situation, I suspect the latter, but I'm not trawling through 400 lines to make sure.

Link to comment
https://forums.phpfreaks.com/topic/178874-simple-syntax-error/#findComment-943684
Share on other sites

That's because there are multiple places in your script that need fixing, both starting echo statements for html blocks and ending the statements. All you need is an editor that does syntax highlighting. Then take 10 minutes to sit down and scroll through the text. Anywhere you find html just stuck in the middle of the script you will need to probably put echo = " before it, then wherever the HTML ends and there is more PHP you will need to "; to close it off. Syntax highlighting will help alot because you can normally see where it's failing.

Link to comment
https://forums.phpfreaks.com/topic/178874-simple-syntax-error/#findComment-943697
Share on other sites

I tried this, but is didn't work. I'm out of idea's here...

 

if($r['laston'] >= time()-15*60) { $on="<font color=green><b>[Online]</b></font>"; } else { $on="<font color=red><b>[Offline]</b></font>"; }


echo "<table width='100%'>
<td class=contentcontent width='25%' valign='top'>";
if($r['display_pic'])
{
print "<img src='{$r['display_pic']}' alt='User Display Pic' title='User Display Pic' />";
}
else
{
print "This user has no display pic!";
}echo "</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Name:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>";
$ccode$color{$r['username']}$ecolor$cendecho 
echo "</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Health:</td>
</td>
<td class=contentcontent width='30%' valign='top'>";
{$r['hp']}/{$r['maxhp']}echo "</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Type:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>";
$userlecho "</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Race:</td>
</td>
<td class=contentcontent width='30%' valign='top'>";
{$r['race']}echo "</td>
</td>
</td></table>
<table width='100%'>
<td class=contentcontent width='20%' valign='top'>
Gender:</td>
</td>
        <td class=contentcontent width='30%' valign='top'>";
{$r['gender']}echo "</td>
</td>
<td class=contentcontent width='20%' valign='top'>
Fourm Posts:</td>
</td>
<td class=contentcontent width='30%' valign='top'>";
{$r['posts']}echo "</td>
</td>
</td></table>";

Link to comment
https://forums.phpfreaks.com/topic/178874-simple-syntax-error/#findComment-943726
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.