close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

extra products

Thread began 12/21/2015 6:48 am by Jamie | Last modified 1/04/2016 9:35 am by Ray Borduin | 1734 views | 12 replies |

Jamie

extra products

Hi Ray

I have a product details page which uses these recordsets to return the product info.

<?php
$PageContents = new WA_MySQLi_RS("PageContents",$DBConnection,1);
$PageContents->setQuery("SELECT productcategories.*, settings.CompanyName, settings.Town, settings.County, settings.PostCode FROM productcategories, settings WHERE CategoryID = ? OR CatPermalink = ? AND Live = 1");
$PageContents->bindParam("i", "".(isset($_GET['id'])?$_GET['id']:"") ."", "-1"); //paramOffersID
$PageContents->bindParam("s", "".(isset($_GET['perm'])?$_GET['perm']:"") ."", "-1"); //paramPermalink
$PageContents->execute();
?>
<?php
$Categories = new WA_MySQLi_RS("Categories",$DBConnection,0);
$Categories->setQuery("SELECT productcategories.CategoryName, productcategories_2.CategoryName AS parentcategoryname, productcategories.CatPermalink, productcategories_2.CatPermalink AS parentpermalink, products.* FROM productcategories INNER JOIN productcategories AS productcategories_2 ON productcategories_2.CategoryID = productcategories.CategoryParentID LEFT OUTER JOIN products ON products.ProductCategoryID = productcategories.CategoryID WHERE products.ProdPermalink = ? AND products.ProductLive = 1 ORDER BY productcategories.CategoryOrder ASC");
$Categories->bindParam("s", "".$_GET["perm"] ."", "-1"); //permparam
$Categories->execute();
?>



I'd like to add a sub row of products based on if they have the same ManufacturerID from the productmanufacturers table

how would I go about doing that please?

Cheers

Jamie

Sign in to reply to this post

Ray BorduinWebAssist

I'm not sure what you mean by a sub-row. I imagine it is just a matter of adding another recordset filtered by the categoryID row of the first one.

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

Jamie

sorry for any confusion. basically am just looking to show any other products that share the same ManufacturerID as the main product detail and link to them.....

Sign in to reply to this post

Ray BorduinWebAssist

Yes, then just add another recordset to the page and filter it based on the CategoryID from the first recordset.

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

Jamie

sorry, but how would i do that?

Sign in to reply to this post

Ray BorduinWebAssist

Update your SQL statement to return the ManufacturerID so you have it to compare....

Then add the new recordset with:

WHERE ProductManufacturerID = ManIDParam

and then add the parameter ManIDParam with a value of: <?php echo($Categories->getColumnVal("ProductManufacturerID")); ?>

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

Jamie

thanks Ray

So have created the new RS

<?php
$ProductsInRange = new WA_MySQLi_RS("ProductsInRange",$DBConnection,1);
$ProductsInRange->setQuery("SELECT * FROM products WHERE ProductManufacturerID = ManIDParam");
$ProductsInRange->bindParam("i", "-1", "".($Categories->getColumnVal("ProductManufacturerID")) .""); //ManIDParam
$ProductsInRange->execute();
?>



Just not sure where/how to add return the ProductManufacturerID in the original RS?

Cheers

Sign in to reply to this post

Ray BorduinWebAssist

Isn't it already there? You have this in the select statement: products.*

isn't the manufacturer ID in the products table?

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

Jamie

yes ProductManufacturerID is in the products table but am getting mysql error - live page link in pm and page attached

Sign in to reply to this post

Ray BorduinWebAssist

I think it should be:

<?php
$ProductsInRange = new WA_MySQLi_RS("ProductsInRange",$DBConnection,1);
$ProductsInRange->setQuery("SELECT * FROM products WHERE ProductManufacturerID = ?");
$ProductsInRange->bindParam("i", "-1", "".($Categories->getColumnVal("ProductManufacturerID")) .""); //ManIDParam
$ProductsInRange->execute();
?>
Sign in to reply to this post
Did this help? Tips are appreciated...
loading

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