I have this at the very top of my send.php
file:
ob_start();
@session_start();
//some display stuff
$_SESSION[\'id\'] = $id; //$id has a value
you have to change your session.save_path
setting to the accessible dir, /tmp/
for example
How to change: http://php.net/session_save_path
Being on the shared host, it is advised to set your session save path inside of your home directory but below document root
also note that