uawdijnntqw1x1x1
IP : 216.73.216.26
Hostname : server.wtmmart.in
Kernel : Linux server.wtmmart.in 4.18.0-553.45.1.el8_10.x86_64 #1 SMP Wed Mar 19 09:44:46 EDT 2025 x86_64
Disable Function : exec,passthru,shell_exec,system
OS : Linux
PATH:
/
home2
/
wtmwscom
/
public_html
/
resources
/
..
/
admin
/
cgi-bin
/
..
/
product_user.php
/
/
<?php $title = "admin sale report"; include 'header.php'; ?> <br/> <h3>Create a User product</h3> <?php echo getMessage(); ?> <form action="product_user_model.php" enctype="multipart/form-data" method="post"> <table border="1"> <tr> <td>Product Category</td> <td > <select name="pcat" required="required" > <?php $rs=mysqli_query($connection, "select cat_id, name from product_cat"); echo "<option value=''>--------Select Product Name-----------</option>"; while($row=mysqli_fetch_array($rs)) { echo "<option value=".$row['cat_id'].">".$row['name']."</option>"; } ?> </select></td> </tr> <tr> <td>Product Name</td> <td><input type="text" name="pname" id="pname" size="40" required="required" /></td> </tr> <tr> <td>Chemical name</td> <td><input type="text" name="cname" size="40" required="required" /></td> </tr> <tr> <td>Packing</td> <td><input type="text" name="pack" size="40" required="required" /></td> </tr> <tr> <td>MRP</td> <td> <input type="text" name="mrp" id="mrp" size="40" required="required" /></td> </tr> <tr> <td>Product Cost</td> <td><input type="text" name="pcost" id="pcost" size="40" required="required" /></td> </tr> <tr> <td>B.V.</td> <td><input type="text" name="bv" id="quantity" size="40" required="required" /></td> </tr> <tr> <td>Product Image</td> <td><input type="file" name="pimage" /></td> </tr> <tr> <td colspan="2" align="center"><input type="submit" name="submit" id="submit" value="Submit"></td> </tr> </table> </form> <br/> <?php include('footer.php'); ?>
/home2/wtmwscom/public_html/resources/../admin/cgi-bin/../product_user.php