close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Search for NO VALUE in the Dropdown Menu

Thread began 3/30/2018 6:30 am by vanroojdotcom | Last modified 3/30/2018 10:21 am by Ray Borduin | 1254 views | 3 replies |

vanroojdotcom

Search for NO VALUE in the Dropdown Menu

I have a dropdown menu (that is pulled from a table) the first Value is manually imputted "ALL MAKES" and the Value itself is blank. This returns all the Makes from the database! Selecting BMW from the Dropdown list returns only BMWs. So far so good.

OK, in order to make the result page a little bit nicer, I add a line, you selected "X" from the database and that returned "y" results. This works too.

However, with the blank value and all the rows returning, I can't get the return message to work. It just adds the first car returned from the database.


I want to use something like
<?php if ($WADAproducts->getColumnVal("vehicleMake") == "" ) echo "A message here"; ?>

This works fine:
<?php if ($WADAproducts->getColumnVal("vehicleMake") == "BMW" ) echo "A message here"; ?>

But I can't work out how to get the VALUE = NOTHING into the statement.


The serach string URL is as follows:
products_results.php?vehicleMake=&Search=CLICK+HERE

So you can see in the URL there's no value for the vehicleMake, but I can't get the PHP code to recognise NO VALUE.

I want the code to be like:

if

<?php if ($WADAproducts->getColumnVal("vehicleMake") == "NO VALUE / BLANK / NOTHING" )

"SHOW THIS DIV HERE"

else

"SHOW THIS OTHER DIV"


?>


So the end product would be

You searched for ALL MAKES (values of makes is blank)

Or

You search for BMW (value of makes is BMW)



Or even
<?php if ($WADAproducts->getColumnVal("vehicleMake") == "IS NOT BLANK / HAS AT LEAST SOMETHING IN IT" )




Many thanks
Christopher

Sign in to reply to this post

Ray BorduinWebAssist

Can I see a copy of the page? Your code won't work because of your check:

<?php if ($WADAproducts->getColumnVal("vehicleMake") == "" ) echo "A message here"; ?>

This code checks the database field for vehicleMake, which will return a value since it is returning all makes. You probably want an IF statement that checks the WHERE clause to see if that is blank, not the database column.

Sign in to reply to this post
Did this help? Tips are appreciated...

vanroojdotcom

Yes, I've searched for a car that doesn't exist and that element actually is visible! So it's thinking, if the result of the database search is zero, show that element. But I need if the "Value of the actual search is zero" then return X. Or something.

I've attached the file.


The website is here (it's not finished yet!)
http://localhost/home.php

Attached Files
products_results.php
Sign in to reply to this post

Ray BorduinWebAssist

I think this would work:

<?php
if (strpos($WADAproducts->Statement,"WHERE") === false)
?>

That will check to see if any WHERE clause (filter) is applied.

Sign in to reply to this post
Did this help? Tips are appreciated...

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...