PHP 5.4 has Deprecate the Function SESSION_REGISTER()

The PHP function SESSION_REGISTER() has been deprecated as of PHP version 5.4.
Instead, use the functin $_SESSION() will do.

// Use of session_register() is deprecated
$hello = "How are you.";
session_register("hello");

// Use of $_SESSION is preferred, as of PHP 5.4 and above
$_SESSION["hello"] = "Hello world, how are you.";

You may refer to the link below fore more information.
http://php.net/manual/en/function.session-register.php

 

  • 33 Users Found This Useful
Was this answer helpful?

Related Articles

SolidCP & MSPControl: Enable HTTPS for Windows hosting

HTTPS protocol is a standard security technology used to establish an encrypted link between a...

Convert .htaccess rewrite rules to web.config

You can use the Import Rules function in IIS to import rewrite rules coding from .htaccess file...

Warning: ini_set() has been disabled for security reasons

Warning: ini_set() has been disabled for security reasonsDuring some script installation below...

SolidCP & MSPControl: Change PHP Version

You can assign specific PHP version for your website, or change it to fulfill your script...

Disabled PHP Functions

PHP is a popular scripting language that is commonly used to build web pages nowadays.However,...