JamesThePanda Posted June 22, 2008 Share Posted June 22, 2008 Hey guys Im making a simple php script and I was just wondering how I would get the Square root of a variable? is there some special code? thanks James Link to comment https://forums.phpfreaks.com/topic/111339-solved-how-do-i-get-the-square-root-of-some-thing-in-php/ Share on other sites More sharing options...
sasa Posted June 22, 2008 Share Posted June 22, 2008 look sqrt() function Link to comment https://forums.phpfreaks.com/topic/111339-solved-how-do-i-get-the-square-root-of-some-thing-in-php/#findComment-571618 Share on other sites More sharing options...
Guest Xanza Posted July 10, 2008 Share Posted July 10, 2008 <?php $variable = "50"; echo "The square root of {$variable} is: " . sqrt($variable); ?> Hopefully that's what you were looking for. Link to comment https://forums.phpfreaks.com/topic/111339-solved-how-do-i-get-the-square-root-of-some-thing-in-php/#findComment-586096 Share on other sites More sharing options...
DarkWater Posted July 10, 2008 Share Posted July 10, 2008 Umm, this topic is over two weeks old. Link to comment https://forums.phpfreaks.com/topic/111339-solved-how-do-i-get-the-square-root-of-some-thing-in-php/#findComment-586113 Share on other sites More sharing options...
corbin Posted July 10, 2008 Share Posted July 10, 2008 And was already solved.... x.x Link to comment https://forums.phpfreaks.com/topic/111339-solved-how-do-i-get-the-square-root-of-some-thing-in-php/#findComment-586539 Share on other sites More sharing options...
Guest Xanza Posted July 10, 2008 Share Posted July 10, 2008 Sorry fellas. Didnt see the [sOLVED] in front of the topic.. Link to comment https://forums.phpfreaks.com/topic/111339-solved-how-do-i-get-the-square-root-of-some-thing-in-php/#findComment-586543 Share on other sites More sharing options...
Barand Posted July 10, 2008 Share Posted July 10, 2008 Sorry fellas. Didnt see the [sOLVED] in front of the topic.. All you had to do was read the post before yours Link to comment https://forums.phpfreaks.com/topic/111339-solved-how-do-i-get-the-square-root-of-some-thing-in-php/#findComment-586611 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.