PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<?php
$result = $certs * $days * $price
echo 'If you get ' .$certs. 'a day for' .$days. ' and sell them for' .$price. ' each, you will make' .$result. ' when you are done.';
?>
<?php
$result = $certs * $days * $price
echo 'If you get ' .$certs. 'a day for' .$days. ' and sell them for' .$price. ' each, you will make' .$result. ' when you are done.'
?>
<?php
$result = $certs * $days * $price;
echo 'If you get ' .$certs. 'a day for' .$days. ' and sell them for' .$price. ' each, you will make' .$result. ' when you are done.';
?>