PercentageBrowsers = str_replace("%","",$PercentageBrowsers);
$BuyersPercentage = str_replace("%","",$BuyersPercentage);
$dollaramount = str_replace("$","",$dollaramount);
echo "
<b>$Visitors</b><br><br>
<b>$PercentageBrowsers</b><br><br>
<b>$BuyersPercentage </b><br><br>
<b>$dollaramount </b><br><br>
" ;
/
$Browsers = $Visitors $PercentageBrowsers;
$Buyers = $BuyersPercentage $Browsers
$profit = $dollaramount $Buyers;
*/
The above results in :
8000000
.05
.05
1.00
however, when i uncomment the above, i get the following response:
Parse error: parse error, unexpected T_VARIABLE in C:\indigoperl\apache\htdocs\bplan\showresults.php on line 26
thanks you.