Announcement

Collapse
No announcement yet.

không echo đc.....

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • [PHP] không echo đc.....

    chẳng hiểu tại sao khi nhập vào Name hoặc chọn gender thì chẳng echo ra gì cả
    Code:
    <?php
    if (isset($_POST['fullname']) and  $_POST['fullname']!=""){
    	echo "fullname:". $_POST['fullname'];
    }
    if (isset($_POST['gender']) and $_POST['gender']!=""){
    	echo "gender:". $_POST['gender'];
    }
    
     ?>
    
    <!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>Untitled Document</title>
    </head>
    
    <body>
    <form name="test_form" action="s3.php" method="post">
    Name: <input name "fullname" type="text" /> <br/>
    Gender: <select name="gender">
      <option value="male" selected="selected">Male</option>
      <option value="female">Female</option>
      
      </select><br/>
      <input type="submit" value="Nhap du lieu"/>
      </form>
    </body>
    </html>
    www.facebook.com/NgheThuatQuaTang

  • #2
    <?php
    if (isset($_POST['fullname']) and $_POST['fullname']!=""){
    echo "fullname:". $_POST['fullname'];
    }
    if (isset($_POST['gender']) and $_POST['gender']!=""){
    echo "gender:". $_POST['gender'];
    }

    ?>

    sao lại có chữ "and" ở đây, phải là dấu "&&" chứ
    Admin: http://giaibaitapsgk.org *** http://congnghegi.com/

    Comment


    • #3
      Mình thử có echo ra giới tính nhé, dòng này action="s3.php" khi bạn submit thì nó sẽ chuyển sang file s3.php file đó là gì bạn? Nếu không có file đó muốn echo ra thì sửa lại action=""
      Blog chia sẻ kiến thức
      http://webb.com.vn

      Comment


      • #4
        Name: <input name "fullname" type="text" /> // Thiếu dấu =

        Chắc s3.php giống giống zậy hả
        PHP Code:
        Name: <?php echo $_POST['fullname'];?></br>
        Gender: <?php echo $_POST['gender'];?>
        Last edited by 10520541; 30-10-2012, 00:11.

        Comment


        • #5
          kiểu này là chủ thớt chưa hiểu rồi.
          đã acction="s3.php" mà lại có $_POST[] mới ghê chứ ^^
          muốn post qua s3.php thì cái này phải bỏ trong s3.php
          Chúc vui vẻ

          <?php
          if (isset($_POST['fullname']) and $_POST['fullname']!=""){ echo "fullname:". $_POST['fullname'];}if (isset($_POST['gender']) and $_POST['gender']!=""){ echo "gender:". $_POST['gender'];} ?>

          Comment


          • #6
            Originally posted by 10520413 View Post
            kiểu này là chủ thớt chưa hiểu rồi.
            đã acction="s3.php" mà lại có $_POST[] mới ghê chứ ^^
            muốn post qua s3.php thì cái này phải bỏ trong s3.php
            Chúc vui vẻ
            Edited :sogood:
            Last edited by 10520541; 30-10-2012, 00:24. Reason: Nhầm hàng :D

            Comment


            • #7
              Originally posted by 10520541 View Post
              Name: <input name "fullname" type="text" /> // Thiếu dấu =

              Chắc s3.php giống giống zậy hả
              PHP Code:
              Name: <?php echo $_POST['fullname'];?></br>
              Gender: <?php echo $_POST['gender'];?>
              Thansk ban. Minh da sua xong
              www.facebook.com/NgheThuatQuaTang

              Comment

              LHQC

              Collapse
              Working...
              X