web9000
March 28th, 2003, 05:54 PM
can the product description be an "include" and how would i do that?
i tried this
<?
include "pagename.php";
?>
and this
<!--#include virtual="pagename.php"-->
but it doesnt work
Jamie
March 29th, 2003, 03:46 PM
Hi,
You could certainly do an include for the product description in the show_product_detail.php template, but the cart would not know which file to include for which product. You cannot add an include to the "Description" field on the product's record.
You could probably do something like this, in "show_product_detail.php":
<?
if ($Name == "Baseball Bat") include "/baseball_bat_desc.php";
if ($Name == "Baseball Glove") include "/baseball_glove_desc.php";
?>
Thanks,
Jamie
Powered by vBulletin™ Version 4.1.2 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.