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
https://forums.phpfreaks.com/topic/142626-null-fields/
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
https://forums.phpfreaks.com/topic/142626-null-fields/#findComment-747572
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.