File "index-area.php"

Full path: E:/sites/Single15/tinmung2007/webroot/THDC-Hai- Ngoai/index-area.php
File size: 797 B
MIME-type:
Charset: utf-8

Download   Open   Back

<?php
session_start();
if($_SERVER['REQUEST_METHOD'] == "POST"){
     $detail = $_POST['detail'];
	// echo $detail;
	 //kiem tra truong hop khong chap nhận dữ liệu de thong bao cho nguoi dung
     if(empty($detail)){
		 echo "chua xu ly du lieu";
        // Xử lý khi người dùng chưa nhập dữ liệu
	 }else{
		 //xu ly khi nguoi dung nhap du lieu
		echo $detail;
     }
 }

?>

<html>
	<head>
    	<meta charset="utf-8">
		<title>nhap du lieu check box</title>
     </head>

    <body>
        
        <form action="" method="POST">
        <div><br></div>
    <textarea name="detail" id="detail" rows="3" cols="30"></textarea><br/><br/>
    <input type="submit" name="add_post" value="Gửi thong tin">
    
	</form>
    

    </body>
	</html>

PHP File Manager