Product Variants Not Loading on Localhost

So I’ve been scouring the code looking for where the problem may be. I found this in C:\dolibarr\www\dolibarr\htdocs\variants\combinations.php: (<-- that is how it is installed on our localhost…we installed using DoliWamp and not sure why it has a dolibarr directory and then a “www” directory than ANOTHER “dolibarr” directory, but it does, and I digress)

if (GETPOST(‘selectvariant’))
{
$action = ‘add’;
if (GETPOST(‘attribute’) != ‘-1’ && GETPOST(‘value’) != ‘-1’)
{
$selectedvariant[GETPOST(‘attribute’).’:’.GETPOST(‘value’)]=GETPOST(‘attribute’).’:’.GETPOST(‘value’);
$SESSION['addvariant’.$object->id]=$selectedvariant;
}
}

It seems like somewhere in there lies the answer…but where?