basically i have the function getpiece
PHP Code:
function getpiece($id = 'nothere')
{
global $vboptions, $stylevar, $vbphrase, $bgclass, $DB_site, $p;
if ($id != "nothere")
{
$p = $id;
}
$getthepiece = $DB_site->query_first("
## query ##
");
return $getthepiece;
most of the times i call getpiece() via
PHP Code:
$array = getpiece(); // for this is uses the $p
but i need to call it in another function with
PHP Code:
$array = getpiece($pieceid); // because $p doesn't exist