i have a simple php login script with session but all i get is just a white blank page after running my login,php script. Here is the login,php page
<?php
error_reporting( E_ALL );
ini_set( 'display_errors', 1 );
include('connect.php');
session_start();
if (isset ($_POST['submit'])) {
$UserName=$_POST['uname'];
$Password=$_POST['pswd'];
$result=mysql_query("select * from bizness_profile where bizness_email='$Username' and bizness_pswd='$Password'") or die (mysql_error());
$count=mysql_num_rows($result);
$row=mysql_fetch_array($result);
if ($count > 0) {
session_start();
$SESSION_ID['user_id']=$row['user_id'];
header('location:update_profile.php');
}else{
header('location:index1.html');
}
}
?>