Take main exit from Airport and turn left towards Airport Circle cross roads.
On reaching cross roads, turn left towards military cantonment area and keep driving straight for approx 5 kilometres.
You will notice two diversions, one going straight to Civil Hospital and another to railway under bridge. Take the under bridge road.
Take the right diversion when crossing under the bridge and then turn right and make a U turn when you are just out of the Under bridge.
Keep driving; you will cross Subhash Bridge, leading to a big circle (RTO Circle).
Take right onto the 132 feet ring road from there.
Make a right turn at the Helmet Circle.(Memnagar cross roads).
Follow the road till Thaltej cross roads, which is on Sarkhej - Gandhinagar highway (S G Road), National Highway no.8.
Take left from Thaltej cross roads and drive till you see Gurudwara on your right. Make a left turn on that cross road and take an immediate right on to the service road going towards Vishal Mega Mart.
Premier House-1 is the third building on your right.
cyberThink InfoTech Pvt. Ltd. is on 5th Floor of Premier House-1.
";
if($exit == 1)
exit;
}
return $db_rec_row_array;
}
//use to insert record
function insert($query,$debug=0)
{
if(trim($query) == "")
die("Query is Empty: ".mysql_error());
/*
This is used to check that query has insert word or not
If you try to execute other types of query in that case this will give the error
*/
if(!preg_match("/^insert/i",$query))
die(" Invalid Query: ".$query." ");
$this->result = mysql_query($query,$this->links);
if(!$this->result)
die(" Result Erorr: ".mysql_error()." ".$query." ");
/*
This is used to debug the code and print the query
You have to pass 1 (one) as the second argument of the edit function
Default is $debug 0 set.
*/
if($debug == 1)
{
print "
";
exit;
}
return $this->result;
}
//use to update record
function update($query,$debug=0)
{
if(trim($query) == "")
die("Query is Empty: ".mysql_error());
/*
This is used to check that query has update word or not
If you try to execute other types of query in that case this will give the error
*/
if(!preg_match("/^update/i",$query))
die(" Invalid Query: ".$query." ");
$this->result = mysql_query($query,$this->links);
if(!$this->result)
die(" Result Erorr: ".mysql_error()." ".$query." ");
/*
This is used to debug the code and print the query
You have to pass 1 (one) as the second argument of the edit function
Default is $debug 0 set.
*/
if($debug == 1)
{
print "
";
exit;
}
return $this->result;
}
//use to insert, update, replace and delete record
function delete($query,$debug=0)
{
if(trim($query) == "")
die("Query is Empty: ".mysql_error());
/*
This is used to check that query has delete word or not
If you try to execute other types of query in that case this will give the error
*/
if(!preg_match("/^delete/i",$query))
die(" Invalid Query: ".$query." ");
$this->result = mysql_query($query,$this->links);
if(!$this->result)
die(" Result Erorr: ".mysql_error()." ".$query." ");
/*
This is used to debug the code and print the query
You have to pass 1 (one) as the second argument of the edit function
Default is $debug 0 set.
*/
if($debug == 1)
{
print "