PK

ADDRLIN : /home/anibklip/pcfcindia.com/bkp2025-26/superadmin/
FLL :
Current File : /home/anibklip/pcfcindia.com/bkp2025-26/superadmin/add_city.php

<?php
include("connexion.php");
include("head.php");

?>


      <p align="right"><a href="add_citya.php">+Add New City</a></p>
<strong>Active Accounts:</strong>
<table border="4" width="100%">
<tr>

<td align="center"><strong>Name</strong></td>
          <td align="center"><strong>Code</strong></td>

          <td align="center"><strong>Edit City</strong></td>
</tr>
<?php
$sql="SELECT * FROM city";
$result=mysql_query($sql) or die('error');
if
(mysql_num_rows($result) == 0) {
    echo "<tr><td align=center class=semitit  colspan=5><br>No City Enter.<br><br></td></tr>";
}
while($row=mysql_fetch_array($result))
{ echo"<tr><td>{$row['name']}</td><td>{$row['code']}</td>
<td align=center><a href=add_city_update.php?id={$row['id']}>Update</a></td>
</tr>";}
?>
</table>

<?php
include("foot.php");
?>


PK 99