LITIS LITIS
  • Tools
    • Site Tools
    • Recent Changes
    • Media Manager
    • Sitemap
    • Page Tools
    • Show pagesource
    • Old revisions
    • Backlinks
    • Back to top
  • Log In

  1. You are here
  2. Cours Licence Pro IUT Le Havre
  3. Exercice 4

lpro:exercice4

  • Show pagesource
  • Old revisions
  • Backlinks

Exercice 4

  • Debut de code
<?php
 
$values=simplexml_load_file("http://search.twitter.com/search.atom?q=ump&count=5");
 
foreach($values as $k=>$v) {
 
	if(isset($v->title))
		echo date("Y-m-d", time($v->published))."-->".utf8_decode($v->content)."<br/>";
}
 
?>