PK

ADDRLIN : /home/anibklip/pcfcindia.com/gst2018/superadmin/
FLL :
Current File : /home/anibklip/pcfcindia.com/gst2018/superadmin/add_city_login.php

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

?>
   
<?php 
$sql="INSERT INTO city(name,code) 
VALUES('$_POST[name]','$_POST[code]')";
$result=mysql_query($sql) or die('<center>Some Problems with installation process, please consult a technician for help. Thank you.</center>');
 echo "<script language='javaScript'> window.location=\"add_city.php\"; </script>";

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


PK 99