Hey,
Ik ben momenteel wat bezig geweest met het inbouwen van een soort twitter menu om te kijken wat die persoon heeft getwittert maar nu ben ik een beetje hopeloos aangezien hij steeds maar 1 twit laat zien ipv. ze allemaal.
Het werkt vooral voor Ipod/Iphone maar je kan het ook hier in je browser bekijken: http://www.twitterphone.crimepatrol.be/
Dit is het scriptje:
PHP
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>TwitterPhone By Dein Dehouwer</title>
<meta name="viewport" content="width=320; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="apple-touch-icon" href="apple-touch-icon.png"/>
</head>
<body onload="setTimeout(function() { window.scrollTo(0, 1) }, 100);">
<div id="header">TwitterPhone</div>
<div id="content">
<?php
/* An little Twitter Aplication for the Iphone & Ipod Touch */
// If there is submit something:
if ( isset($_POST['submit']) )
{
// Your twitter username.
$username = $_POST['twitname'];
// Prefix - some text you want displayed before your latest tweet.
// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\"link.html\")
$prefix = "<img src=\"twitter-t.png\" />";
// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)
$suffix = "test";
$feed = "http://search.twitter.com/search.atom?q=from:" . $username . "&rpp=1";
function parse_feed($feed)
{
$stepOne = explode("<content type=\"html\">", $feed);
$stepTwo = explode("</content>", $stepOne[1]);
$tweet = $stepTwo[0];
return $tweet;
}
$twitterFeed = file_get_contents($feed);
?>
<div id="username">Twitter of <?php echo $username; ?></div>
<h3>Twit's:</h3>
<?php
echo "".stripslashes($prefix)." ".parse_feed($twitterFeed)." ".stripslashes($suffix)."";
}
else
{
?>
<h3>Twitter:</h3>
<form method="POST">
<table>
<tr>
<td>Twitter UserName:</td>
<td><input type="text" name="twitname" /></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="Twit" /></td>
</tr>
</table>
</form>
</div>
<?php
}
?>
</body>
</html>
Toon Meer
Alvast bedankt!
Mvg,
Dein