ข้ามไปที่เนื้อหาหลัก

บทความ

กำลังแสดงโพสต์จาก สิงหาคม, 2024

ออกแบบระบบ Login อย่างง่ายด้วย CodeIgniter Framework

โครงสร้างการจัดวางไฟล์ application/ ├── controllers/ │   └── Member_login.php ├── models/ │   └── Member_login_model.php ├── views/ │   └── member_login/ │       └── login_view.php ส่วนของฟอร์ม HTML ( View ) <div class="container"> <h2>Login</h2> <?php if($this->session->flashdata('error_message')): ?> <div class="alert alert-danger"> <?php echo $this->session->flashdata('error_message'); ?> </div> <?php endif; ?> <?php echo form_open('member_login/login'); ?> <div class="form-group"> <label for="username">Username:</label> <input type="text" class="form-control" id="username" name="username"> </div> <div class="form-group"> <label for="password">Password:</label> <input type="password" class=...

การใช้ CSS ตรึงส่วนหัวข้อของตาราง HTML ด้วย style position: sticky

<style>   table {     width: 100%;     border-collapse: collapse;   }   th {     position: sticky;     top: 0;     background-color: #ffffff; /* สีพื้นหลังหัวตาราง */     z-index: 10; /* ทำให้หัวตารางอยู่บนสุด */   } </style> <table border=1>   <thead>     <tr>       <th>หัวข้อ 1</th>       <th>หัวข้อ 2</th>       <th>หัวข้อ 3</th>     </tr>   </thead>   <tbody>     <tr>       <td>ข้อมูล 1</td>       <td>ข้อมูล 2</td>       <td>ข้อมูล 3</td>     </tr>     <tr>       <td>ข้อมูล 1</td>       <td>ข้อมูล 2</td>       <td>ข้อมูล 3</td>   ...

การใช้ jQuery ตรึงคอลัมน์ส่วนหัวข้อของตาราง HTML

<!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8">   <meta name="viewport" content="width=device-width, initial-scale=1.0">   <title>Table Header Fixed</title> <style>     table {       width: 100%;       border-collapse: collapse;     }     th, td {       padding: 8px;       text-align: left;       border: 1px solid #ddd;     }     .fixed-header {       position: fixed;       top: 0;       z-index: 10;       background-color: #ffffff;       display: none;     }   </style>   <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> </head> <body>   <table id="myTable">     <thead>       <tr>     ...

ค้นหาในเว็บไซต์

เนื้อเพลงที่ได้รับความนิยม ในรอบสัปดาห์

ค้นหาบล็อกนี้