Jump to content

Syntax Error


ellifant
Go to solution Solved by akphidelt2007,

Recommended Posts

I receive the following error code:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'database ORBER BY id' at line 1

 

I am driving myself crazy trying to figure it out.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
	<head>
	<!-- TemplateBeginEditable name="doctitle" -->
	<title>NoEqualGaming</title>
	<!-- TemplateEndEditable -->

		<link rel="stylesheet" type="text/css" href="/stylesheet.css" />
		<script language="JavaScript" type="text/javascript" src="/SpryAssets/SpryCollapsiblePanel.js"></script>
		<link href="/SpryAssets/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css" />
		<!-- TemplateBeginEditable name="head" -->
		<!-- TemplateEndEditable -->
	</head>
	<body>
		<div class="container"> 
			<div class="bannerArea">			
				<div class="toplogo"><a href="#"><img src="/images/banner_logo.gif" border="0" /></a></div>			
			</div>
			<div class="contentArea">
				<div class="leftnavigation">
					<a href="/" >Home</a>
					<a href="/news.php" >News</a>
					<a href="/research.php" >Research</a><a href="/reviews.php" >Reviews</a>
					 <a href="/aboutus">About Us</a><a href="/contactus.php" >Contact Us</a>
					<a href="/member_area/index.php" >Members Only</a>
				</div>
				<div class="contentleft"><!-- TemplateBeginEditable name="item 1" -->
				<h2>Research</h2>
									
                           
                            
                   <?php
mysql_connect("host", "user", "pass")or die("cannot connect"); 
	mysql_select_db("db")or die("cannot select DB");
	
	$query = "SELECT * FROM database ORDER BY id";
	
	$result = mysql_query($query);

if($result === FALSE) {
    die(mysql_error()); 
}

$date = date("l F d Y", $row['pubdate']);
    $title = stripslashes($row['title']);
    $abstract = stripslashes($row['abstract']);
	$author = stripslashes ($row['author']);
	$author2 = stripslashes ($row['author2']);
	$author3 = stripslashes ($row['author3']);
	$author4 = stripslashes ($row['author4']);
	$author5 = stripslashes ($row['author5']);
	$author6 = stripslashes ($row['author6']);
	$author7 = stripslashes ($row['author7']);
	$author8 = stripslashes ($row['author8']);
	$keyword = stripslashes ($row['keyword']);
	$keyword2 = stripslashes ($row['keyword2']);
	$keyword3 = stripslashes ($row['keyword3']);
	$keyword4 = stripslashes ($row['keyword4']);
	$keyword5 = stripslashes ($row['keyword5']);
	$link = stripslashes ($row['link']);
	$game = stripslashes ($row['game']);

while($row = mysql_fetch_array($result))
{
    
?>	
    <p><strong><?php echo $title; ?></strong><br /><br /><?php echo $author; ?> <?php echo $author2; ?> <?php echo $author3;  ?> <?php echo $author4; ?> <?php echo $author5; ?> <?php echo $author6; ?> <?php echo $author7; ?> <?php echo $author8; ?><br /><?php echo $pubdate; ?><br />
    <?php echo $abstract; ?><br /><br />
	<?php echo $keyword; ?>
	<?php echo $keyword2; ?>
	<?php echo $keyword3; ?>
	<?php echo $keyword4; ?>
	<?php echo $keyword5; ?>
    <br />
	<?php echo $game; ?>
    <br />
	<?php echo '<a href="' . $row['link'] . '">' . $row['link'] . '</a>'; ?>

<?php
}?>

    <hr /></p>


				<!-- TemplateEndEditable --></div>
				<div class="contentright"><!-- TemplateBeginEditable name="item 4" -->
   </div>
				<br class="clear_both" />
			
		</div>
		<div class="footerArea">
			<div class="footercontent">
				<div class="footernav"><a href="/contactus.php" >Contact Us</a> •<a href="adminlogin.php">Admin Login</a></div>
				<div class="copyright">Appalachian State University.  All rights reserved.</div>
			</div>
		</div>
		
		</body>
</html>

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.