Jump to content

[SOLVED] Parse error: syntax error, unexpected '}', exp...


Recommended Posts

Do you know what's the matter?

I got to my page and it gives me this error

Parse error: syntax error, unexpected '}', expecting ']' in /home/nathan/public_html/stixy.php on line 23

 

here's my code

<?php include 'header.php';  // Works.


?>
<div id="content">
<div id="columnsC"><br/>
	<a href="http://www.stixy.com"><img  style="border:0;" src="siteimg/stixy.jpg" alt="stixy"/></a><Br/>
<p>Stixy helps users organize their world on flexible, shareable Web-based bulletin boards called Stixyboards. Unlike most personal productivity or project management software, Stixy doesn't dictate how users should organize their information. Users can create tasks, appointments, files, photos, notes, and bookmarks on their Stixyboards, organized in whatever way makes sense to them. Then they can share Stixyboards with friends, family, and colleagues.</p>
</div>
<div id="columnsD">
<?
/**
* User has already logged in, so display relavent links, including
* a link to the admin center if the user is an administrator.
*/
echo '<br/>';
if($session->logged_in){
$dbh=mysql_connect ("localhost", "my_cool_user", "my_cool_pass") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("my_cool_db"); 
//break
if ($_SERVER['REQUEST_METHOD']=="GET" && $_GET['Item']!="")															            {

			 $SQL="DELETE FROM stixy WHERE stixy='".$_GET['Item'};
			 $result=mysql_query($SQL); 			
}
//break
if(isset($_GET['remove']) && $_GET['remove'] == '1'){
    $sql = "DELETE FROM emailists WHERE stixy=('" . $session->userinfo['email'] . "')";
        if($sqlres = mysql_query($sql)){
            echo '<div id="mes"><ul><li>email address removed</li></ul></div>';
        }else{
            echo mysql_error();
        }
}
//break
if(isset($_GET['insert']) && $_GET['insert'] == 1) {
  $sql = "SELECT stixy FROM emailists WHERE stixy = '{$session->userinfo['email']}'";
  if ($result = mysql_query($sql)) {
    if (!mysql_num_rows($result)) {
      $sql = "INSERT INTO emailists (stixy) VALUES ('" . $session->userinfo['email'] . "')";
      if ($sqlres = mysql_query($sql)){
        echo '<div id="mes"><ul><li>email address added</li></ul></div>';
      } else {
        echo mysql_error();
      }
    } else {
      echo "<div id='mes'><ul><li>email address already exists</li></ul></div>";
    }
  } else {
    echo mysql_error();
  }
}
$query = mysql_query("SELECT id, stixy FROM emailists WHERE stixy = '{$session->userinfo['email']}'");

$result = mysql_num_rows($query);

if($result !== 0){

echo "<ul><li><a href='stixy.php?remove=1'>Remove yourself from the list</a></li></ul>";

} else {

echo "<ul><li><a href='stixy.php?insert=1'>Add yourself to the list</a></li></ul>";

} 

echo "<ul>";
  $sql = "SELECT stixy FROM emailists";
  if ($result = mysql_query($sql)) {
    if (mysql_num_rows($result)) {
      while ($row = mysql_fetch_assoc($result)) {
echo "<li>".$row['stixy']."  <a href='samepage.php?Item=".$row['stixy']."'>invite Sent</a>";
//echo "<li>";  echo $row['stixy'] . "</li>";
        
      }
    }
  }
echo "</ul>";

}
else{
?>
<br/>
<p style="border-style: solid;
border-width: 3px;"><b>To Invite people or add yourself to the list you need to either login or if you dont have an account signup</b></p>

<?
}
?>

</div>



<?php include 'sidebar.php'; ?>
<div style="clear: both;"> </div>
</div>
<?php include 'footer.php';  // Works.

?>

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.