Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\emohonv2\module-srksmka-spi.php:116) in C:\xampp\htdocs\emohonv2\auth.php on line 3

Recommended Answers

All 2 Replies

make sure that you file have this basic structure at the begging and at the end

<?php
//Start Session Before anything else
session_start();
//Turn ON the output buffering
ob_start();

//You Code Goes HERE 


//At the End Close the output buffering
ob_end_flush();
?>

This is a very common question that has been asked a million time before. A search of Daniweb will show you many previous posts on the same topic. See this link.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.