cyberThink Info Tech Pvt. Ltd. (CIPL) is an affiliate of cyberThink Inc, a multi location NJ,USA based IT staffing and Services company.
CIPL has worked on the projects of the leading
MNCs such as PEPSI,
PEDIGREE, VOLVO, CISCO, CAMPBELL and few
more.
CIPL has a pool of highly dedicated team of software professionals and technocrats with adequate experience and exposure to project development.
CIPL is managed by professionals, who have more than decades of IT experience worldwide. The real strength of the management team lies in the entrepreneurial spirit, which enables them to handle rapid changes in the environments and technologies.
CIPL with its flexibility and adaptability is in a position, to offer complete business solutions in a cost-effective manner to suit the demanding needs of the industry.
CIPL measures success by in build trust with the client base spread across the continents. This strategy has resulted in establishing relationship with our clients and helped in our rapid growth. We work with customers across a wide range of industries to provide technology based products and services.
Our offshore software development services include Offshore Product Development, Customized Application Development, Migration & Maintenance, Web Development , SEO Solutions, Multimedia Solutions and our BPO solutions include Staff Augmentation, Recruiting and Sales, Account services and Remote server management.
Infrastructure
India: We have state of the art development facilities at prime location in Ahmedabad, Gujarat.
The facility includes Pentium IV desktops, Laptops, Servers, Scanners, Printers, Backup devices, CD writers, Laser printers, Internet Leased Lines, and VOIP equipments.
Entire workstations and computers are networked using 100 MBPS structured cabling as per Dlink, USA standards and operate on Windows 2003 and Linux servers.
We are equipped with high-speed communication lines to access and connection with our clients across the globe. We have full-fledged & facilities to meet the client’s demands in the ever-changing technologies.
USA: cyberThink has state of the art development facilities at prime location in Bridgewater, New Jersey.
The facilities include the large data center with highly equipped hardware. The hardware includes Pentium IV desktop, laptops, Windows 2003 Servers, SUN servers, Scanners, Printers, backup devices, DAT devices, CD writers, Laser printers, LCD projector, EPBAX, Plotters, & other impact printers.
All workstations and computers are networked using fast Ethernet and structured cabling as per Lucent, USA standards and operated on Windows 2003 and UNIX server. The office is well equipped with high-speed internet connection. cyberThink is a Microsoft Certified Solutions Provider Company.
Our People
We have dedicated and energetic software professionals engaged in providing customized and ready to use software solutions & products to our clients across the globe. The understanding of business domains and pool of trained software developers help our clients to achieve their business objectives and offer full value for money.
We have a large pool of committed developers with strong academic background with specialization and certifications from institutes of repute such as Microsoft, Sun and Oracle.
CIPL is committed on human resource development through rigorous training and a process of extensive research and scrutiny. We allow our people to undergo regular training in technology and management practices, which helps them to understand the present business environment and industry needs.
To, achieve our mission we’ve well educated professionals in our team. From our total strength, which is growing day by day, 35% have Masters Degree, 45% are engineers, and remaining 20% are graduate with specialized in computer courses. Many employees have professional certifications from Microsoft and Oracle. Most of our employee had five years plus experience on IT, Software development, website designing and business experience.
";
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 "