Jump to content

Search mySQL database coding problem


Danny830x

Recommended Posts

Hi.

 

I have a database named 'Forums' with a table named 'forumlist'. The fields in the table are 'id', 'name', 'link', and 'keys'.

 

I am trying to search the database in either the 'name' or 'keys' field and display the matches.

 

I am getting this error:

 

Parse error: syntax error, unexpected T_STRING, expecting ']' in C:\xampp\htdocs\search3.php on line 51 (The define fields)

 

 

 

<html>

<head>

  <title>My Forum Search</title>

  <style type="text/css">

 

  table {

  background-color: #CCC

  }

 

  th {

  width: 150px;

  text-align: left;

  }

 

  </style>

</head>

<body>

<h1>Forum Search</h1>

 

<form method="post" action="search3.php">

<input type="hidden" name="submitted" value="true" />

 

<label>Search Category:

 

<select name="category">

<option value="keys">Keyword</option>

    <option value="name">Name</option>

   

</select>

</label>

   

 

 

 

 

 

<label><input type="text" name="criteria" /></label>

 

<input type="submit" />

 

 

</form>

 

<?php

 

if (isset($_POST['submitted])) {

 

 

 

 

DEFINE ('DB_USER', 'root');

DEFINE ('DB_PSWD', '******');

DEFINE ('DB_HOST', 'localhost');

DEFINE ('DB_NAME', 'Forums');

 

$dbcon = mysqli_connect(DB_HOST, DB_USER, DB_PSWD, DB_NAME);

 

 

 

$category = $_POST['category'];

$criteria = $_POST['criteria'];

$query = "SELECT * FROM forumlist WHERE $category LIKE '$criteria'";

$result = mysqli_query($dbcon, $query) or die ('Error retrieving data')

 

echo "<table>";

echo "<tr> <th>Name</th><th>Link</th> </tr>";

 

while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {

 

echo "<tr><td>";

    echo $row['name'];

    echo "</td><td>";

    echo $row['link'];

    echo "</td></tr>";

   

 

}

 

echo "</table>";

 

} // end of main if state

 

 

 

 

 

 

?>

 

 

 

 

</body>

</html>

 

 

 

Thanks in advance

Link to comment
Share on other sites

Thanks for the fix. That was really dumb of me, it was late and I just needed a fresh set of eyes I suppose.

 

Now that the code works...

 

I have it default to search by "Keyword" from database section 'keys', and the ability to change it to "Name" from database section 'name'.

 

When I search from Keyword, it never returns results, but when I search from Name it works correctly. Any idea what the problem is there?

 

Thanks again

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.