PHP error: A non well formed numeric value encountered

A PHP Error was encountered

Severity: Notice
Message: A non well formed numeric value encountered
Filename: views/sample.php
Line Number: 193

Code: echo date("m/d/Y",$birthdate);


Solution: use the strtotime function

echo date("m/d/Y",strtotime($birthdate));





Spread The Love, Share Our Article

Related Posts

No Response to "PHP error: A non well formed numeric value encountered"

Post a Comment