Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9192747
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:00:00+00:00 2026-06-17T21:00:00+00:00

I used a PHP script over 9 years ago. After updating PHP version to

  • 0

I used a PHP script over 9 years ago.

After updating PHP version to latest stable one (PHP 5.4.1.1), my script no longer works.

I found the problem area, Can anyone help me to convert this old PHP code to latest PHP 5.4.11.

if ((strlen($user_name)<$nick_min_length) or (strlen($user_name)>$nick_max_length)) {
    $error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
    include($file_path."designes/".$design."/error_page.php");
    exit;
}
if (ereg("[^".$nick_available_chars."]", $user_name)) {
    $error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
    include($file_path."designes/".$design."/error_page.php");
    exit;
}
if (strtolower($user_name) == strtolower(strip_tags($w_rob_name))) {
    $error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
    include($file_path."designes/".$design."/error_page.php");
    exit;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T21:00:01+00:00Added an answer on June 17, 2026 at 9:00 pm
    if (ereg("[^".$nick_available_chars."]", $user_name)) {
    

    should be:

    if (preg_match("/[^" . preg_quote($nick_available_chars) . "]/", $user_name)) {
    

    ereg() is deprecated and should not be used. Also with preg_match() you want to make sure special characters within your variable are properly escaped so you would use preg_quote() and the regex would need delimiters, I put / in this case.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I used a loop in my php script to run insert queries into my
I wrote a PHP script that retrieves values from a MySQL Query. I used
I write a script for a alerter service. I used php connection_status function to
I have a php email script that has worked with a website used it
I have a simple PHP script. Its used to upload users into the joomla
I am writing PHP script, which will store mouse position over the page with
Having used PHP GD for some time I have decided to move to Imagemagick.
Tech used: PHP 5.3.10 Hi, I have an array (example below) I need to
I have used PHP array for HTML select, then I put my codes in
I've never used php before and am trying to connect to a SQL Server

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.