Tagged Questions

1
vote
1answer
49 views

How do I get new video release into my website

I am wondering on how do I get to show movies, tv series, anime etc. that came out on DVD's to my site l;ike http://www.blockbuster.com/ does. Can i just feed it off IMDB or any other solutions? ...
0
votes
1answer
227 views

How to load xml in cron job

I have a problem in running the cron job. here are my code: <?php $doc = new DOMDocument(); $doc->load( 'http://www.all-news.in/feed' ); $items = $doc->getElementsByTagName( ...
0
votes
1answer
147 views

problem with class method - cannot get it to work inside foreach loop - php

I wrote the class Link which has a method shortTolong() this should return the real URL for a shortend url by returning the 'location' response header. i tested it and it works OK here is the code ...