0

echo ステートメントを追加すると、テキストエリア ボックスが消えます。これはコードの選択です:

<?php
$rs_settings = mysql_query("select * from thesis where id='$_SESSION[user_id]'");


        ?>

 <br><?php  while ($row_settings = mysql_fetch_array($rs_settings)) {?>
  <form action="thesis.php" method="post" name="regForm" id="regForm" >
    <div class="forms">

           Title of Proposed Thesis<span class="required">*</span>
      <textarea name="thesis_name" type="text" id="thesis_name" size="600"><?php echo
 $row_settings['thesis_Name']; ?></textarea>

            Abstract<span class="required">*</span>
          <textarea name="abstract" type="text" id="abstract" size="600"><?php echo 
$row_settings['abstract']; ?></textarea> 



      <?php } ?>

どのコードがこれを引き起こしているか知っている人はいますか?

4

1 に答える 1

2

構文が正しくありません。属性<textarea>を持っていません。value開始タグと終了<textarea>タグの間に値を配置することになっています。

 <textarea name="abstract" type="text" id="abstract" size="600"><?php echo $row_settings['abstract']; ?></textarea>
于 2012-04-23T12:49:28.683 に答える