Quote:
Originally Posted by Link14716
To do that, you need to have it update the "vinfo" field (create it as a TEXT column) whenever an update takes place.
First, have it make an array with all the vendor information. Let's say you had the array in the $vendor variable. You'd need to do something like this (assuming $categoryid is the category's id)
PHP Code:
mysql_query("UPDATE category SET vinfo='".addslashes(serialize($vendor))."' WHERE id = $categoryid");
Then, after it is retrieved, use this code to make it an array again (assuming $category is the array created from the query):
PHP Code:
$category['vinfo'] = unserialize($category['vinfo']);
|
So, it sounds like I can't really collect this information "on the fly"? I need to add a field to the category table and update it each time the vendor information changes, correct? I can then unpack the vendor information when I retreive the category information.