Okay, I spoke a bit too soon!!
I'm getting the following :
Parse error: parse error in D:\http\servicepals.com\includes\center\phpscripts.php(23) : eval()'d code on line 18
It's part of the vbPortal/vBulletin system, but it's the PHP that's falling over. I'm not sure why though, as it similar to that which I've used on others part of the page okay :
PHP Code:
echo "<p align='left'><a href='directory/default.cfm'><IMG height=10 alt='' src='images/layout/directory.gif' width=122 border=0></a><br>
<table cellspacing=0 cellpadding=1 width='100%' border=0>
<tr align=right bgcolor=#000066>
<td>
<table cellspacing=0 cellpadding=5 width='100%' border=0>
<tr bgcolor=#e9e9e9>
<td>";
$query="SELECT user.userid, userfield.field11, userfield.field12, userfield.field14, userfield.field15, userfield.field24
FROM user
LEFT JOIN userfield USING (userid)
ORDER BY user.joindate DESC
LIMIT 10";
$result = mysql_query($query);
while(list ($userid, $field11, $field12, $field14, $field15, $field24) = mysql_fetch_row($result))
print("<a href="forums/member.php?s=&action=getinfo&userid=$userid"><img src="images/small_arrow.gif" width=5 height=8 border=0><b>$field14 $field15</b></a><br>$field24, $field11 - $field12<br>
");
echo "
</td>
</tr>
</table>
</td>
</tr>
</table></p>";
Any ideas guys? Not sure where I'm going wrong here!!
Cheers,
Ross
Bookmarks