Jump to content

[SOLVED] defining $sql


slanderman

Recommended Posts

I'm trying to get this query from my webform to work.  I noticed that the code I borrowed doesnt define / set $sql...how do I set this to make the query work?  When i try to query the database, I keep getting "Error: Query was empty"

 

<?php

$con = mysql_connect(......);
if (!$con)
{
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("slanderman", $con);

$result = mysql("slanderman","SELECT * FROM performer WHERE (firstname LIKE '%"+$Search + "%' OR lastname LIKE '%"+$Search + "%' OR email LIKE '%"+$Search + "%') ORDER BY firstname,lastname,email");

if (!mysql_query($sql,$con))
  {
die('Error: ' . mysql_error());
  }

mysql_close($con);

?>

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.