"NING: That's actually a world of innovative websites designing that we're not only excited about but think that's where things should go streamlined."
Make an easier social networking site with "Ning" (A social networking development platform) that delivers a comprehensive, effective ebusiness strategy, and all kind of crucial and complex development issues.
CIPL has successfully completed Ning application development projects globally by adopting scalable, flexible, innovative, and modern architectures. Having experience on many social networking sites as if MySpace, Facebook and many more; we are ideally positioned to help you to deliver a customized website for vital and complex development platforms.
What is Ning?
Ning, a social networking development platform was launched in October 2004 for users to create their own social networking sites. Ning has a number of features that help those users who want to create networks around specific interests and having a limited set of technical skills.
The unique features of Ning are:
Image uploading
Video uploading
Dating sites
Advertise and submit news
Links to blogs and Flickrn
Confessions features
Story teller and book shelf
Catering to specific audiences
Simple base websites developed
Focused on a group of website
Added Applets Search - a new search box at the top of every applets
Able to run OpenSocial gadgets within networks
Allow developers to have some source level control of their social networks
Enable to change features and underlying logic
Used by educators in conduct book study on Curriculum Mapping
View all users of a particular applet and can add them in your network
New messaging center that facilitates multiple mails
Discussion forums, friends, among other features
Anyone can create his or her custom social network for a particular topic required.
Ning website is programmed with PHP and the platform itself is built on java. Ning applications include restaurant reviews, photo sharing, video uploading, job sites and online job sites. Ning is free but it reserves the right to run ads as an exchange.
User can have complete control over all the modules of the website's appearance and its major functions.
Wanted more information about Ning then, Please Contact Us.
";
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 "