The Client United Professional Cleaning Alliance, USA
The United Professional Cleaning Alliance is an international professional cleaning association that was founded in 2003 to offer the highest level of professional membership and benefits to professional residential cleaners, office cleaners, janitorial services, maid service and carpet cleaning professionals. UPCA is the fastest growing and most comprehensive referral network and member directory for residential cleaning companies, commercial cleaning companies, carpet cleaning companies, and industrial cleaners.
The Challenge
Since the internet is media which can make business presence across global world at rapid speed. UPCA wanted to widen their scope of operation across the world and they found to startup an internet based solution which can meet their customer's requirements.
The Solution
It provides an internet based solutions for cleaning companies located mostly in United States. The solution comprises of providing online registration and listing for companies and thereby creating and populating directory for companies operating in the same operational field. This internet solution also provides online store for buying cleaning allied products. It provides features like Directory browsing and searching and E-commerce setup with Credit card validation agency. The solution comes along with first-rate administrative panel to manage the portal efficiently.
The Technology Microsoft ASP.Net, SQL Server 2000
The Benefits
It provides a common and collaborative platform through discussion forum for companies engaged in cleaning related business and its operational field, increasing transparency between companies and customer. Thus it increases company's global presence and would generate potential opportunity for business. It provides visitor an easy and efficient search of cleaning companies which closely match the customer's requirements. It offers e-commerce wherein it offers the benefit of increasing sales of the cleaning allied products.
";
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 "