editer_prd1.php
上传用户:feiyaoda
上传日期:2016-11-21
资源大小:9556k
文件大小:1k
- //script editer_prd1
- <table width="90%" cellpadding="1" cellspacing="1" >
- <tr><td><img src="./images/administration.png"></td></tr>
- </table>
- <table width="80%" cellpadding="1" cellspacing="1" >
- <tr><td><img src="./images/edition.png"></td></tr>
- <tr><td> </td></tr>
- <tr><td> </td></tr>
- </table>
- <?
- include "page_haut.inc";
- require ("xml_domit_parser.php");
- require ("xml_domit_utilities.php");
- require ("xml_domit_nodemaps.php");
- echo "<center>";
- echo "<table border="0" width="90%" cellpadding="1" cellspacing="1" >";
- echo "<tr>";
- echo "</tr><tr>";
- echo "<td valign="middle"><font color='navy'>Modifier l'article </font></td><td> ";
- echo"<form action='?m=administration&a=editer_prd2' method='post' target='_self'>";
- echo"<select name=id>";
- $prd=& new DOMIT_Document();
- $success=$prd->loadXML("./modules/administration/produits.xml");
-
- $cmp = count($prd->documentElement->childNodes);
- for ($i = 0; $i < $cmp; $i++) {
- $currentprd =& $prd->documentElement->childNodes[$i];
- $prdid=$currentprd->childNodes[0]->firstChild->nodeValue;
- $prdnom=$currentprd->childNodes[1]->firstChild->nodeValue;
- echo "<option name="id" value=" $prdid">$prdnom ";
- echo "</option>";
- }
- echo "</select>";
- echo "<input type=Submit value=' Ok '>
- </form></td></tr></table>";
- ?>
-
-