Jump to content

Null fields


danjoe_15

Recommended Posts

I have a form in which users can type in a value into a text box(there are bout 20 different text boxes) and I return the records matching the search criteria.  I am able to get this to work if all of the text boxes are filled in however I do not know how to check if a variable is null and if it is then to ignore that text box and not search for " " in that field.

Link to comment
Share on other sites

Here is an example of what I am trying to do.  With this code I could find say anyone from the state of Califorina with the last name of smith.

 

<code>

$c = dbQuery("SELECT * FROM customers WHERE last_name= %1 AND states=%2", $_POST['LastName'], $_POST['State']);

$customer = mysql_fetch_assoc($results[$c]);

</code>

 

However I am lost as to how to rewrite this to search for say anyone with the last name of Smith, or anyone from the state of California.

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.