Home » Categories » PHP » Error

Deprecated: Function eregi() is deprecated in [duplicate]

if (!eregi ("^[a-zA-Z ]+$", stripslashes(trim($acc_type))))//line 20 

->

if (!preg_match("/^[a-z ]+$/i", stripslashes(trim($acc_type))))//line 20 

 

Source:

https://stackoverflow.com/questions/18509858/deprecated-function-eregi-is-deprecated-in

Article Rating (No Votes)
Rate this article
  • Icon PDFExport to PDF
  • Icon MS-WordExport to MS Word
 
Attachments Attachments
There are no attachments for this article.
Comments Comments
There are no comments for this article. Be the first to post a comment.
Related Articles RSS Feed
There are no related articles for this article.