25.09.2011, 10:39
Pretty nice! i like the design 
Edit - Do people should keep that ******* code? is that necessary?

Edit - Do people should keep that ******* code? is that necessary?
Код:
<?php // ******* feed @domVPS /* This piece of code fetches new data from @domVPS *******. It doesn't hurt to keep this in. :) */ $doc = new DOMDocument(); $doc->load('http://*******.com/statuses/user_timeline/domvps.rss'); $i = 0; foreach($doc->getElementsByTagName('item') as $node) { if(++$i == 2) { break; } $user = explode(': ', $node->getElementsByTagName('description')->item(0)->nodeValue); $desc = strip_tags(str_replace(array("\r\n", "\r", "\n", "domVPS: "), ' ', $node->getElementsByTagName('description')->item(0)->nodeValue)); echo "<a href=\"http://domVPS.com/ref-domPanel\">".$desc."</a>"; } ?>