i have this code. and i think there is nothing wrong. but it doesn't work. just display white screen on mozilla. may be, someone knew where is my mistake ?? please tell me..
 <?php 
session_start();
include 'koneksi2.php';
$uname=$_POST['Name'];
$pass=$_POST['Password'];
$op=$_GET['op'];
//$pas=md5($pass);
if($op=='in'){
 $perintah = "select * from user WHERE username = '$uname' AND password = '$pass'";
 $hasil = mysql_query($perintah);
 if(mysql_num_rows($hasil)==1);
 {
 $c=mysql_fetch_array($hasil);
 $_SESSION['username']=$c['username'];
 $_SESSION['level'] = $c['level'];
  if($c['level']=="pemilik"){
  header("location:home_pemilik.php");
  }
  else if ($c['level']=="pelayan"){
  header("location:home.php");
  } 
 else{
    echo("password salah");
     }}
}else if ($op=="out")
    {
    unset($_SESSION['username']);
    unset($_SESSION['level']);
    header("location:login.php");
    } 
 ?>
