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 Quote 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 Quote 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. Quote 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. Quote 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 Quote 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.. Quote 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 Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.