简体   繁体   English

表格中的MySQL PHP数据显示

[英]MySql php data display in tables

I am doing a simple set of PHP scripts to edit and return MySQL records from a web site. 我正在做一套简单的PHP脚本来编辑和从网站返回MySQL记录。 Everything works fine but there is a cosmetic that I just cannot seem to correct. 一切正常,但有一种化妆品,我似乎无法纠正。 I presume being very rusty I am missing something obvious - I have tried everything I can think of though. 我以为我很生锈,但我缺少明显的东西-尽管我已经尽力了。 The content of field ADDTEXT can be fairly large and i would like to word wrap it all into the table cell. 字段ADDTEXT的内容可能很大,我想将它们全部自动换行到表单元格中。 This script truncates it when a single line length is exceeded. 超过单个行长时,该脚本会将其截断。 And yes I know I should be using mysqli_... but I am deaeling with that ! 是的,我知道我应该使用mysqli _...,但是我正在为此而烦恼!

  <html>
  <head>
  <title>Form Edit Data</title>
  </head>

  <body>
  <table border=1>
  <tr>
    <td align=center>EDIT NEWS ITEM</td>
  </tr>
  <tr>
  <td>
      <table style="width:100%">
   <tr>
      <?


   $id=$_GET['id'];

  include "D***************.uk\public_html\html\ConnectDB.php";//database connection

      $order = "SELECT * FROM st¬¬¬¬¬¬¬ where TYPE = '".$id."'";


      $result = mysql_query($order);
      $row = mysql_fetch_array($result);
  ?>
      <form method="post" action="edit_data.php">
      <input type="hidden" name="id" value="<? echo "$row[TITLE]"?>">
        <tr>       
          <td>Item Title</td>
          <td>
            <input type="text" name="title"
        value="<? echo "$row[TITLE]"?>">
          </td>
        </tr>
    <tr>
          <td>Item Text</td>
          <td>
            <input type="text" name="text" 
          value="<? echo "$row[ADDTEXT]"?>">
          </td>
        </tr>
        <tr>
          <td align="right">
            <input type="submit"
          name="submit value" value="Edit">
          </td>
        </tr>
      </form>
      </table>
    </td>
  </tr>
</table>
</body>
    Try it
<html>
      <head>
      <title>Form Edit Data</title>
      </head>

      <body>
      <table border=1>
      <tr>
        <td align=center>EDIT NEWS ITEM</td>
      </tr>
      <tr>
      <td>
          <table style="width:100%">
       <tr><td>
          <?


       $id=$_GET['id'];

      include "D***************.uk\public_html\html\ConnectDB.php";//database connection

          $order = "SELECT * FROM st¬¬¬¬¬¬¬ where TYPE = '".$id."'";
     $result = mysql_query($order);
          $row = mysql_fetch_array($result);
      ?>
          <form method="post" action="edit_data.php">
          <input type="hidden" name="id" value="<?php echo $row['TITLE']?>">
            <tr>       
              <td>Item Title</td>
              <td>
                <input type="text" name="title"
            value="<?php echo $row['TITLE']?>">
              </td>
            </tr>
        <tr>
              <td>Item Text</td>
              <td>
                <input type="text" name="text" 
              value="<?php echo $row['ADDTEXT']?>">
              </td>
            </tr>
            <tr>
              <td align="right">
                <input type="submit"
              name="submit value" value="Edit">
              </td>
            </tr>
          </form>
          </td>
          </tr>
          </table>
        </td>
      </tr>
    </table>
    </body>

将其更改为textarea字段。

<textarea name="text"><?php echo $row['ADDTEXT'];?></textarea>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM