close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Need help writing a link with a php parameter to pull all records.

Thread began 2/06/2010 4:20 pm by blackweldermhe400113 | Last modified 2/12/2010 5:13 pm by blackweldermhe400113 | 4738 views | 16 replies

Eric Mittman

The first thing you will need to do is copy the text in the query for the current WHERE clause. Next make use the set session value server behavior to set a session variable. For the trigger will need to make it based on both $_GET['id_category'] and $_GET['id_collection'] not being empty, it might look like this:

php:
if(  (isset($_GET['id_category']) && $_GET['id_category'] != "") || (isset($_GET['id_collection']) && $_GET['id_collection'] != "") ){



Give your variable a name that is meaningful, then for the value set it to the copied text of your WHERE clause. Next you will want to add in an else to the set session value like this:

php:
if(!session_id()) session_start();
if(  (isset($_GET['id_category']) && $_GET['id_category'] != "") || (isset($_GET['id_collection']) && $_GET['id_collection'] != "") ){
 $_SESSION['your variable name'] = "your where clause text";
} else {
 $_SESSION['your variable name'] = "";
}




The final part is to replace the where clause in the rs with this session variable like this:

php:
"SELECT *
FROM product INNER JOIN category ON idcategory_product=id_category INNER JOIN collection ON idcollection_product=id_collection" . $_SESSION['your variable name'] . 
"ORDER BY id_product DESC"



This should make it so you have no where clause if the values are not present. Please give this a try and post back with any questions that you have.

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