Archive for 'social network'
twitter-php classe php per ricevere e inviare messaggi a twitter
Posted on 09. Jun, 2009 by Administrator.
Create object using your credentials (user name and password)
$twitter = new Twitter($userName, $password);
The send() method updates your status. The message must be encoded in UTF-8:
$twitter->send('I am fine today.');
The load() method returns the 20 most recent status updates posted in the last 24 hours by you and optionally by your friends:
$withFriends = FALSE;
$channel = $twitter->load($withFriends);
The returned channel is a SimpleXMLElement object. Extracting the information from the channel is easy:
foreach ($channel->status as $status) {
echo "message: ", $status->text;
echo "posted at " , $status->created_at;
echo "posted by " , $status->user->name;
}
Sito web: http://code.google.com/p/twitter-php/
Continue Reading
Social network facile con buddypress
Posted on 15. Dec, 2008 by Administrator.

BuddyPress trasforma una installazione di WordPress MU in una piattaforma di social network.
BuddyPress č un set di specifici plugin per WP MU che aggiungono delle distinte nuove funzionalitą. BuddyPress contiene tutte le funzioni che ti aspetti da WordPress ma da ai propri membri la possibilitą di socializzare.
Sito web: http://www.buddypress-it.it/
Continue Reading
Script php gestione social network
Posted on 03. Nov, 2007 by Administrator.
Folkstr è uno script php per gestire un social networking realizzato in PHP MySQL che puoi installare nel tuo sito web. Costa solo 15 dollari.
Sito web: http://folkstr.com/features.php
Continue Reading
Phpizabi script php social network
Posted on 04. Sep, 2007 by Administrator.

PHPizabi è una delle piu potenti piattaforme di social networking in giro. Facile da installare e usare, è il software adatto per siti di social networking.
Sito web: http://www.phpizabi.net/

