error in session_start()
php error:
session_start() [function.session-start]: Cannot send session cache limiter
solution:
remove any space before session_start();
code should be like:
<?php
session_start();
… …
remaining code
…. …
php error:
session_start() [function.session-start]: Cannot send session cache limiter
solution:
remove any space before session_start();
code should be like:
<?php
session_start();
… …
remaining code
…. …