Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Tampilkan Nama Pengguna di halaman Indeks

CheckLogin.php

if ( $count == 1 )  {
    $_SESSION['login_id'] = $row['id'];
    $_SESSION['username'] = $row['username']; // added

    if ( $_SESSION['login_id'] != '' || $_SESSION['login_id'] > 0 ) { // edited
        header("location: index.php");  
    } else { 
        header("location: login3.html");  
    }
}

Index.php

<?php
    require_once 'UserSessionAdmin.php'; // edited
    $username = $_SESSION['username']; // added
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>DASHBOARD</title>
    <link rel="stylesheet" type="text/css" href="css.css"/>
</head>

<body>
<?php echo $username; ?> // edited


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Masalah membaca/menulis data UTF-8 di MySQL dari Java menggunakan konektor JDBC 5.1

  2. NodeJS MySQL - Bagaimana cara mengetahui koneksi dirilis atau tidak

  3. Bagaimana cara Memeriksa apakah Tombol Radio Dicentang atau Dipilih di jQuery?

  4. AttributeError:modul 'mysql' tidak memiliki atribut 'konektor'

  5. Cara terbaik untuk membuat file konfigurasi (config.php) php