Jump to content

Parse error: syntax error, unexpected '}' in /home/thinksna/public_html/videoAdd


frijole

Recommended Posts

i can't figure out why this wont work?

 

<?php
session_start();
require_once("dbConnect.php");
if(!$_POST || $_GET['video'] == "bad"){?>

<html>

<table>

<tr>
<td> <form method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>"> Embed HTML:</td> 
    <td> <textarea rows="5" cols="50" wrap="virtual" name="embedHTML"> Enter Embed HTML Here </textarea></td>
</tr>

<tr>
<td>Description: </td>
<td><textarea rows="5" cols="50" wrap="physical" name="description"> Describe The Video Here </textarea></td>
</tr>

<tr>
<td><input type="submit" value="Add Video!"></form></td>
</tr>

</table>

</html>

<?php
} elseif ($_GET['video'] == "good" && isset($_SESSION))

{
$embedHTML = $_SESSION['embedHTML'];
$description = $_SESSION['description'];

$query = "INSERT INTO videos (embed_html, description) VALUES ('$embedHTML', '$description')";
$result = mysql_query($query);

if ($result) echo "video added succesfully!";
else echo "video not added to the DB ";
}

  elseif (isset($_POST['embedHTML'])||isset($_POST['description']))
{
$embedHTML = $_POST['embedHTML'];
$videoDesc = $_POST['description'];

echo "<html>";
echo "<blockquote>";
echo stripslashes($embedHTML);
echo "</blockquote>";
echo "<br />";
echo "<blockquote>";
echo stripslashes($videoDesc);
echo "</blockquote>";
echo "</html>";

$_SESSION['embedHTML'] = $embedHTML;
$_SESSION['description'] = $description;

    echo "<a href=\"" . $_SERVER['PHP_SELF'] ."?video=good\">Add to DB?</a>";
echo "<a href=\"" . $_SERVER['PHP_SELF'] ."?video=bad\">Add to DB?</a>";
}

   else { echo "failure"; }
?>

Link to comment
Share on other sites

the only thing i see is this but idk. im not able to reproduce. can you send a link as well?

if ($result) echo "video added succesfully!";
else echo "video not added to the DB ";

 

change to this(although it shouldnt matter)

if ($result){ echo "video added succesfully!";} 
else{ echo "video not added to the DB "; }

 

Link to comment
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.