|
Well this query is in line 232 of uploadproduct.php
$querya = "SELECT id FROM {$Globals['pp_db_prefix']}products WHERE userid='{$User['userid']}' AND cat='$defcat' AND bigimage='$realname'";
Your problem has nothing to do with slashes. Your cat variable is empty. It is looking for $defcat which is passed in the url
You can try replacing $defcat in the query with $category
The next one I will reserve comment till I think further on things
|