Posts tagged php
Read feedburner awareness api using php simplexml_load_file()
Apr 4th
hi all,
this is a simple php script to retrieve and read feedburner awareness xml file.
it is based on simplexml_load_file() function.
all what you need to do is changing the $title variable. all the best.
< ?php $title="Dimw"; $apicall="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=".$title; $xml = simplexml_load_file($apicall); echo "URI: ".$xml->feed['uri']; echo "DATE: ".$xml->feed->entry['date']; echo "CIRCULATION: ".$xml->feed->entry['circulation']; echo "HITS: ".$xml->feed->entry['hits']; echo "REACH: ".$xml->feed->entry['reach']; ?>More >
write text on image using php
Aug 10th
hello,
this is a simple method to write text on image using php. in fact, my friends asked me to create a php page that will take a specific information about their website visitors and return an image of a certificate with the visitor information written on it.
the logic of the More >
Own a website in no time and with no fees
Feb 9th
Hi,
Nowadays many people dream of making there own websites. Their aims are vary from one to one. But I am sure that all of them have the aim to share something with others. As one of those people, I want to make a home page for myself, a blog to More >
installing mysql, php , apache on ubuntu
Feb 9th
i have got my lovely new aspire one note book , which Yamani (MY FRIEND) helped me formatting it and installing ubuntu in it.
now i was thinking on the best way of using it and i think the best way is that i will More >

pligg, stories with no comments
Aug 22nd
Posted by AL YAMANI in Web Development
17 comments
Pligg is an open source digg clone. in addition to that, it is flexible and very easy to modify.
Pligg shows published stories in the front page, and it has a link to show the queued stories.
Today I am going to teach you the way to show both commented and More >