Jump to content

Deprecated Function? encodeHTML


spikypunker

Recommended Posts

Hi Guys, loving the new look!

 

I've got this developable software which i've bought and am trying to intergrate into my site but have encountered a problem. The company is based in Oz so the tech support replies come in the middle of the night and they werent very helpful, pretty much just told me what the error was so looks like i'm on my own in this one.

 

It's saying there's a deprecated function, so i'm guessing the code was written for an out of date PHP version?

 

Here's the error:

 

Deprecated: Function ereg_replace() is deprecated in /home/fotravel/htdocs/brandit/editor/editor/default.php on line 39 Deprecated: Function ereg_replace() is deprecated in /home/fotravel/htdocs/brandit/editor/editor/default.php on line 40 Deprecated: Function ereg_replace() is deprecated in /home/fotravel/htdocs/brandit/editor/editor/default.php on line 41

 

 

And here's the function i belive is in question:

 

 function encodeHTML($sHTML)
    {
    $sHTML=ereg_replace("&","&",$sHTML);
    $sHTML=ereg_replace("<","<",$sHTML);
    $sHTML=ereg_replace(">",">",$sHTML);
    return $sHTML;
    }

  echo encodeHTML(file_get_contents($file));

 

Could anyone suggest what to replace this function with?

 

 

Cheers! Peace Chris

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.