Please help me.
I got this error while uploading in Server. I developed this code in windows based. But the deployed server is Linux Server. In windows server i didn't get this session error.
Here is my code:
<?php session_start();
require_once('l2t_connect.php');
if($_GET['action'] == "send")
{
if(isset($_REQUEST['btnSend']))
{
$key=substr($_SESSION['key'],0,5);
$number = $_REQUEST['number'];
if($number!=$key)
{
$message = "Please enter the correct Code!";
}
}
}
<?php } ?>
Thank you in advance!!!!!!