here's the start of some code from an index.php page:
<pre>
require("Cart.php");
DBinfo();
Brand();
Root();
mysql_connect("$DBHost","$DBUser","$DBPass");
$old=date("z")-1;
mysql("$DBName","DELETE FROM Users WHERE Date < $old");
</pre>
now, the only file that's getting called is Cart.php, and there's NOTHING regarding mysql there. those function calls do nothing but make some variables global.
so where does this call to mysql() come from???