darkfreaks Posted January 17, 2009 Share Posted January 17, 2009 Parse error: syntax error, unexpected ':' on line 137 that line happens to be the begining of my css code why would it be erroring there?i am passing PHP through my CSS could this be it? <?php //line 137 below ?> <style type="text/css"> <!-- #body { background-image: url(http://www.chickapets.com/images/user_images/opg_1/dd/<?=$body?>.png); position:absolute; width:150px; height:300px; z-index:1; background-repeat: no-repeat; </style> Link to comment https://forums.phpfreaks.com/topic/141251-solved-parse-error-syntax-error-unexpected/ Share on other sites More sharing options...
Mchl Posted January 17, 2009 Share Posted January 17, 2009 There might be something wrong in the lines above. Paste a few of those. Link to comment https://forums.phpfreaks.com/topic/141251-solved-parse-error-syntax-error-unexpected/#findComment-739325 Share on other sites More sharing options...
darkfreaks Posted January 17, 2009 Author Share Posted January 17, 2009 Lines Above: <?php $rank_check = 1; $page_title = "User Profile"; include "header.inc.php"; $db_server = "localhost"; $db_username = ""; $db_password = ""; $db_name = ""; $con=mysqli_connect($db_server,$db_username,$db_password); mysqli_select_db($con,$db_name); $members = fetch("SELECT * FROM members2 WHERE username = '$user' AND game = '$game'"); $members_profiles = fetch("SELECT * FROM members_profiles2 WHERE username = '$user' AND game = '$game'"); $profile_id = fetch("SELECT id FROM `members2` WHERE username = '$members[username]'"); $online = fetch("SELECT last_visit FROM online WHERE userid = '$members[id]' ORDER BY last_visit DESC LIMIT 1"); if ($rank >= "5") { $iplog = fetch("SELECT ip_addr FROM ip_log WHERE userid = '$members[id]' ORDER BY id DESC LIMIT 1"); $membersIP = " ($iplog[ip_addr])"; } if (!$members[id]) { die("$openHTML<p align=center class=error>That is not a real user</p>$closeHTML"); } if ($members[rank] <= 1) { die("$openHTML<p align=center class=error>This user has been suspended.</p>$closeHTML"); } $gender = $members_profiles[gender]; $genderArray = array("<img src=images/icons/undecided.gif>", "<img src=images/icons/female.gif>", "<img src=images/icons/male.gif>"); $gender = $genderArray[$gender]; $mailSettings = $members_profiles[mail_settings]; $mailSettingsArray = array("<a href=mail_send.php?game=$game&send_to=$usersOn[username]><img src=images/icons/mail.gif></a>", "<a href=mail_send.php?game=$game&send_to=$usersOn[username]><img src=images/icons/mail.gif></a>", ""); $mailSettings = $mailSettingsArray[$mailSettings]; $bud = "<a href=buds.php?game=$game&bud=$members[username]><img src=images/icons/bud.gif></a>"; $date_registered = date("M j, Y", $members_profiles[date_registered]); $last_visited = date("H:i", $online[last_visit]); $last_visited2 = date("M j, Y @ H:i", $online[last_visit]); $exBday = explode("-", $members_profiles[birthday]); $months = array("", "January", "February", "March", "April", "May", "June", "July", "August", "Septemeber", "October", "November", "December"); $bdayMonth = $exBday[0]; if ($bdayMonth < 10) { $bdayMonth = ereg_replace("0", "", $bdayMonth); } $exBday[0] = $months[$bdayMonth]; $birthday = "$exBday[0] $exBday[1], $exBday[2]"; $userAge = $this_year - $exBday[2]; if ($this_month < $exBday[0]) { $userAge = $userAge - 1; } if (($this_month == $exBday[0]) && ($today < $exBday[1])) { $userAge = $userAge - 1; } if ($online[last_visit] >= ($timestamp - $secondsToKeepUsersOn)) { $onlineNow = "<b><font color=green>Yes! <i><font size=-1>last visit at $last_visited</font></i></font></b>"; } else { $onlineNow = "<B><font color=red>No <i><font size=-1>last visit on $last_visited2</font></i></font></b></font></b>"; if ($last_visited2 == "Dec 31, 1969 @ 18:00") { $onlineNow = "<B><font color=red><i><font size=-1>Never logged in</font></i></font></b></font></b>"; } } $yourNotes = fetch("SELECT bud_note FROM buds2 WHERE bud_me = '$userid' AND bud_you = '$members[id]'"); $yourNotes = $yourNotes[bud_note]; if (!$yourNotes) { $yourNotes = "<i>You do not have any notes on the player, add them to your buddy list to add notes!</i>"; } $find_shop = fetch("SELECT shop_name,shop_size FROM usershops2 WHERE owner = '$members[id]' AND game = '$game'"); if ($find_shop[shop_name]) { $usershop_line = "<b>Shop:</b> <a href=$base_url/usershop.php?game=$game&user=$user>$find_shop[shop_name]</a> <font size=-1>(size $find_shop[shop_size])</font>"; } $find_gallery = fetch("SELECT gallery_name,gallery_size FROM usergallerys WHERE owner = '$members[id]' AND game = '$game'"); if ($find_gallery[gallery_name]) { $gallery_line = "<br><b>Gallery:</b> <a href=$base_url/usergallery.php?game=$game&user=$user>$find_gallery[gallery_name]</a> <font size=-1>(size $find_gallery[gallery_size])</font>"; } $find_deck = fetch("SELECT gallery_name,gallery_size FROM usercards WHERE owner = '$members[id]' AND game = '$game'"); if ($find_deck[gallery_name]) { $deck_line = "<br><b>Card Deck:</b> <a href=$base_url/userdeck.php?game=$game&user=$user>$find_deck[gallery_name]</a> <font size=-1>(size $find_deck[gallery_size])</font>"; } $locationLine = $members_profiles[location]; if (!$locationLine) { $locationLine = "<i>Middle of no where!</i>"; } $getClub = fetch("SELECT position,club FROM club_members2 WHERE user = '$members[id]' AND game = '$game'"); $getclub = fetch("SELECT id,name FROM clubs2 WHERE id = '$getClub[club]' AND game = '$game'"); if ($getclub[id]) { $clubrank = $getClub[position]; if ($clubrank == 1) { $position = "Member"; } if ($clubrank == 2) { $position = "Moderator"; } if ($clubrank == 3) { $position = "Admin"; } $club_line = "<br><b>Club:</b> $position in <a href=$base_url/club.php?game=$game&clubid=$getclub[id]>$getclub[name]</a>"; } ?> Link to comment https://forums.phpfreaks.com/topic/141251-solved-parse-error-syntax-error-unexpected/#findComment-739329 Share on other sites More sharing options...
Mchl Posted January 17, 2009 Share Posted January 17, 2009 For one thing you did not close HTML comment after defining styles... but it should not be the cause of this of course. Looking further... Link to comment https://forums.phpfreaks.com/topic/141251-solved-parse-error-syntax-error-unexpected/#findComment-739331 Share on other sites More sharing options...
darkfreaks Posted January 17, 2009 Author Share Posted January 17, 2009 yeah i noticed i added --> before </style> still no luck Link to comment https://forums.phpfreaks.com/topic/141251-solved-parse-error-syntax-error-unexpected/#findComment-739333 Share on other sites More sharing options...
Mchl Posted January 17, 2009 Share Posted January 17, 2009 Is the error still there, if you remove the css part? Link to comment https://forums.phpfreaks.com/topic/141251-solved-parse-error-syntax-error-unexpected/#findComment-739335 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.