Wie ändere ich die Produktinformationen des Dropdown-Felds und das Bild der Produktkategorie?
2017-10-24 17:41:19
0
0
788

 <?php

     Session_Start();

     header('content-type:text/html;charset=utf-8');

     include_once('conn.php');

     // $GID= $_SESSION["GID"];

     // $GName=$_SESSION["GName"];

     // $GPrice=$_SESSION["GPrice"];

     // $GContent=$_SESSION["GContent "];

     // $GImage=$_SESSION["GImage"];

     $gid=$_GET['id'];

     $sql="select * from items where GID=$gid";

$ query = mysql_query ($ sql);

$ row = mysql_fetch_assoc ($ query);

? & gt;

& lt;! docType html & gt;

& lt; charset="utf-8">

<title>修改商品</title>

<link rel="stylesheet" href="styles/global.css" type="text/CSS" /> ;

</head>

<body>

<h3>修改商品</h3>

<form method = "post" action="checkaddPro.php" enctype="multipart/form -data">

<table width="70%"  border="1" cellpadding="5" cellpacing="0" bgcolor="#cccccc">

<tr>

<td align="right">商品名称</td>

<td><input type="text" name="pName"  placeholder="<?php echo $row['GName']?> ; "/></td>

</tr>

<tr>

<td align="right">商品分类</td>

<td>

< ;div id="class">

<select name="CID">

<?php 

         foreach($row as $rows){

?>

<option value= "<?php echo $rows['CID'];?>"><?php echo $rows['CName']?></option>

<?php 

  };

?>

</select>

</div>

</td>

</tr>

<tr>

<td align="right">商品价格</td>

<td><Eingabetyp ="text" name="mPrice"  placeholder="<?php echo $row['GPrice']?>"/></td>

</tr>

<tr>

<td align="right">商品描述</td>

<td>

<textarea name="pDesc" id="editor_id" style="width:100%;height:150px ;"><?php echo $_SESSION["GContent"];?></textarea>

</td>

</tr>

<tr>

<td align="right">商品图片</td>

<td>

    <!-- <label for="file">请选择:</label> -->

    <input type="file" name="file" id="file" value="$GImage" />

<!-- <a href="javascript:void( 0)" id="selectFileBtn">添加附件</a>

<div id="attachList" class="clear"></div> -->

</td>

</tr>

<tr>

<td colspan="2"><input type="submit"  value="修改商品" /></td>

</tr>

</table>

</form>

</body>

</html>

QQ图片20171024174047.png

Antworte allen(0)
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!