Jump to content

Recommended Posts

Hello,

 

I have a table in my database called "blue & white".  Yet when I search for it using the HTML form below, my code tells me that the table does not exist.

 

So I think the problem is the ampersand (&) in "blue & white".  I'm doing a lot of stripping on the variable $find (strip_tags, mysql_real_escape_string, htmlentities, etc.).  Does any of that delete the ampersand?  If so, how can I keep the ampersand in there when looking up the value $find in the database?

 

Thanks in advance,

 

John

 

 

<div class="searchbox">
  <form action="search.php" method="post">
  <label>Enter Topic:
  <input type="text" name="find" size="55"/>
  <input type="hidden" name="searching" value="yes" />
  <input type="submit" name="search" value="Search" />
  </label>
  </form>
  </div>

 

On search.php:

 

<?php


ob_start();
session_start();
$find = strip_tags($_POST['find']);
$find = trim ($find);
$find = strtolower($find);
$find = stripslashes($find);
$_SESSION['find'] = $find;

mysql_connect("mysqlv10", "username", "password") or die(mysql_error());
mysql_select_db("database") or die(mysql_error());

$find = mysql_real_escape_string($find);
$find = htmlentities($find);

$result=mysql_query("SHOW TABLES FROM database LIKE '$find'")
or die(mysql_error());


?>

 

you can also escape table names with backticks

`blue & white`      works for tables with spaces, ampresands and tables where the table name is a reserved word.    Generally you should avoid this in the first place. But if it's necessary that will work.

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.