Warning: session start() [function.session-start]: Cannot send session cache limiter - headers already sent
We see this problem when we put the session_start() in the wrong position. You can't send any content before starting the session. Sometimes we call the session in the header. You will never do that.
The session_start() function must be called before any output is sent to the browser because it sends a header to the browser to set up the session. If any output has already been sent to the browser, the headers have already been sent and cannot be modified, resulting in the error message.
Put Your session_start() into Top of the page
<?php
session_start();
ob_start();
?>
<html>
<head>
</head>
<body>
</body>
<html>
Today we will learn how to verify email id while signup. it's very important for the real user. You ..
This is a common problem for those of you who are new to coding. While coding we often make some syn..
Warning: session start() [function.session-start]: Cannot send session cache limiter - headers alrea..
Before we use the PDO, we will know why we will use PDO.PDO Only supports object-oriented.It has man..
Deprecated: autoload() is deprecated, use spl autoload register() instead. How to replace this (my a..
getimagesize() is a PHP function that returns an array containing information about the size and typ..
Today we will know - How to login with otp in php. Here we will use php,mysql & ajax. Before tha..
Get the latest news and updates by signing up to our daily newsletter.We won't sell your email or spam you !