session_start Throws Fatal Error

coachoutlet1lad

New Member
I'm currently working on a small CMS for my website and I'm getting following error when calling session_start() : \[quote\] Fatal error: Exception thrown without a stack frame in Unknown on line 0\[/quote\]I'm storing the PDO database connection in the $_SESSION, so I need to call session_start() directly after starting up the script.Here's a snippet :\[code\]function initDB($config){ //initalizes the database connectiontry{ @session_start();}catch (Exception $e){}$dsn = 'mysql:dbname='.$config['db'].';host='.$config['host'];$user = $config['usr'];$password = $config['pw'];try { $db = new PDO($dsn, $user, $password); $_SESSION['db'] = $db;} catch (PDOException $e) { echo 'Connection failed: ' . $e->getMessage();}\[/code\]Back traced the error to "@session_start()", so I'm not able to suspress the error with @ or even with a try-catch.I Hope you could help me.Thanks a lot
 
Back
Top