CIPL Sales/Recruiting team has a reputation for providing highly skilled professionals who are best in industry. Our team is focused to find the right talent for our client's needs in minimal duration. The sales process begins when a job requisition is received by the sales team. Our sales persons are highly competent to thoroughly understand our client's requirement. This is the first step in locating the right applicant for the position. The recruiters are highly skilled in identifying, sourcing, screening & recruiting top talent using Internet searches and Internet advertising & vendor relations. We utilize a detailed screening process including in-depth background checks & ensuring technical proficiency of the candidate. The applicant's personality, communication skills & previous work
experience are assessed. The team is armed with high speed internet access, VoIP for continuous voice connectivity and a huge database of top-notch consultants.
After completing the search, screening & interviewing candidates, the sales person presents solid candidate(s) that match or exceed the client's requirements in terms of technical strength, communication skills, business knowledge and personality. The sales team co-ordinates & monitor the interview process. Upon selection, the sales/recruiting team spares no efforts to deliver the candidate to the client's workplace.
Fairness, integrity, continuous learning & teamwork are the builders to our success. We strictly adhere to the business ethics that ensure fair treatment, full disclosure, equal opportunity and compliance with all legal laws & regulations.
";
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 "