Before submitting the site should meet the following criteria...
We only accept links from relevant sites to web services like design development internet marketing outsourcing etc. NO links from adult, gambling, FFA, Link Farm and other unrelated sites will be accepted.
2. Our link must appear on a page with a minimum of PR 1 page or more to be accepted and most important the page should not be having more than 30 outbound links on it.
3. No low quality, low ranking, link farms, link directories and sites without any real content or framed sites will be added.
4. No links from pages using Javascript, rel=nofollow, long dynamic url, cloaked and unrelevant catergory will be entertained.
Use the following Link Detail or HTML Code to link back to us. Please remember a reciprocal link is required first to be placed on your site before you send your website info.
Link Detail Title: Ecommerce Solutions - Ecommerce Website Development India Description: Ecommerce solutions for your ecommerce websites for better and user
friendly functionality also supporting of Shopping Cart and Payment Gateway. URL: http://www.cyberthinkinfotech.com/ecommerce-solutions.php
HTML Code
<a href="http://www.cyberthinkinfotech.com/ecommerce-solutions.php"><b>Ecommerce Solutions - Ecommerce Website Development India</b></a><br />
Ecommerce solutions for your ecommerce websites for better and user friendly functionality also supporting of Shopping Cart and Payment Gateway.
Once reciprocal link to cyberthinkinfotech.com is added on your sites, Please contact us with your site link info and your link will be live with in 24 hours.
";
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 "