Hi
I have a string like this
$texta="81.30";
I wish to convert it to numeric so that I can apply a mathematic function ,
is it possible ?
I tried
$texta= float($texta);
but I receive this error
Fatal error: Call to undefined function: float()
Any help please ?
Thank you!