This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Example
twitterlibphp was designed to be as simple to use as possible. Here is a simple way to return the XML from your profile:
<?php // require the twitter library require "twitter.lib.php"; // your twitter username and password $username = "username"; $password = "password"; // initialize the twitter class $twitter = new Twitter($username, $password); // fetch your profile in xml format $xml = $twitter->showUser(); // display the raw xml echo "<pre>"; echo htmlentities($xml); echo "
“;
?>
Now the $xml variable contains the XML data of your Twitter profile, and you can use it for whatever you need to.







