jkkenzie Posted April 4, 2008 Share Posted April 4, 2008 I want to multiply a variable $point and a value 1222.977 . is it like below <?php $point= 2344 $result = $point*1222.977 echo $result ?> Link to comment https://forums.phpfreaks.com/topic/99562-calculate-with-php/ Share on other sites More sharing options...
conker87 Posted April 4, 2008 Share Posted April 4, 2008 Yes. <?php $point= 2344; $result = $point * 1222.977; echo $result; ?> You could have just tried it first without asking.. Link to comment https://forums.phpfreaks.com/topic/99562-calculate-with-php/#findComment-509327 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.