Goo day, I am novice with PHP and I get multiple errors: Deprecated: Function session_unregister() is deprecated in /home/content/69/9988669/html/intranet/index.php on line 6
Deprecated: Function session_register() is deprecated in /home/content/69/9988669/html/intranet/index.php on line 20
Warning: session_register() [function.session-register]: Cannot send session cache limiter - headers already sent (output started at /home/content/69/9988669/html/intranet/index.php:6) in /home/content/69/9988669/html/intranet/index.php on line 20
Here is the code of my page:
<?php
session_start();
require '../common.inc';
$msg_err = $_SESSION["msgerr"];
session_unregister("msgerr");
session_unset();
session_destroy();
/*
session_unregister("con");
session_unregister("form_user_id");
session_unregister("form_password");
session_unregister('langue_user');
*/
$form_user_id = "";
$form_password = "";
$numero = $_GET["numero"];
session_register("numero");
?>