View Single Post
Old 10-10-2012, 06:13 PM   PM User | #2
tracknut
Regular Coder

 
Join Date: Aug 2006
Posts: 892
Thanks: 4
Thanked 206 Times in 205 Posts
tracknut is an unknown quantity at this point
Code:
$result = mysql_query($sql) or die("Query failed.");
        if(mysql_num_rows($result) ==0) { ?>
        <div id="error"><div class="msg" id="sucmsgid"> <?
    echo "No user found with this ID!"; ?>
    </div></div>
There is no closing brace for the red opening brace. I suspect you want the closing brace after the two closing </div>

Dave

Edit: Oh wait, I see it there after the mysql_close. Which is line 41?
tracknut is offline   Reply With Quote