Edit - Nevermind. Question has changed entirely since I wrote this up.
1 - $varp=300000 should probably be $varp300000
2 - You need another pair of brackets around the entirety of the if-statement:
if ($varp80000) && ($varp100000) && ($varp120000)
&& ($varp140000) && ($varp160000) && ($varp180000)
&& ($varp200000) && ($varp220000) && ($varp240000)
&& ($varp260000) && ($varp280000) && ($varp300000)
becomes
if ( ($varp80000) && ($varp100000) && ($varp120000)
&& ($varp140000) && ($varp160000) && ($varp180000)
&& ($varp200000) && ($varp220000) && ($varp240000)
&& ($varp260000) && ($varp280000) && ($varp300000) )
3 - Your variables $varp# may actually not set anywhere. If you're expecting an array, you probably want something like:
while ($row = mysql_fetch_array($result)) {
$varp = unserialise($row['ustk_retail']);
if ( ($varp[80000]) && ($varp[100000]) && ($varp[120000])
&& ($varp[140000]) && ($varp[160000]) && ($varp[180000])
&& ($varp[200000]) && ($varp[220000]) && ($varp[240000])
&& ($varp[260000]) && ($varp[280000]) && ($varp[300000]) )
{
$o13 = "1";
}
}