I have an error where it says session_start() saying :
Fatal error: Call to unsupported or undefined function session_start() in ../dataincludes/template.inc on line 10
my code starts like:
<?
/ CONNECT TO DB SERVER /
include("../dataincludes/connect.inc");
/ START SESSION /
session_start();
/ CHECK IF SESSION EXISTS, IF NO...SEND TO LOGIN PAGE/
if(!isset($Loginusername))
{ ?>
<head><title>Distributor Login</title></head>
Any ideas out there?
Thanks,
Steve