can i make the radically operation in php
if yes , please tel me
if no thx 4 attention :D

Recommended Answers

All 4 Replies

Is this supposed to mean something that someone could actually reply to?

Member Avatar for nevvermind

If I'm right, you're searching for square, cube or nth root.

sqrt(81); pow(81, 1/2); // square root

pow(27, 1/3); cube root

pow(64, 1/$n); // you'll have to guess this

Addendum: some languages (mine, for example) use the term "radical" for "square root". I guess OP thought it's that simple to translate. LINK

thank you

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.