PK

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

<?php
	session_start();
	require_once '../common/common.php';
	require_once '../common/secure.php';
include("../connexion.php");
include("../head.php");

$city = $_SESSION['city'];
print $city;

if($city=='amritser')
{

$table=$_REQUEST['table'];
$certno=$_REQUEST['certno'];
$recordno=$_REQUEST['recordno'];

print "Set $recordno For $certno from $table";


}
else{
	print "Sorry, Invalid Function";
}

?>


PK 99