Search found 2 matches

by ast020
Thu Mar 28, 2013 11:44 pm
Forum: Tutorials
Topic: RSS Reader Not Working!
Replies: 1
Views: 727

Re: RSS Reader Not Working!

SOLVED

For those who end up in my situation I discovered a major error in my code:

_FILE_ needs (2) underscores... __FILE__
<?php
 
$path = dirname(_FILE_);  **<--- Using (__FILE__) fixed this**
 
include("{$path}/inc/bbc_news_reader.inc.php");
 
?>
by ast020
Thu Mar 28, 2013 8:50 pm
Forum: Tutorials
Topic: RSS Reader Not Working!
Replies: 1
Views: 727

RSS Reader Not Working!

I am trying to design a website similar to drudge report which posts dynamic rss feeds including images and titles. I think php is the best way to go. I am following the PHP Tutorial videos and I am stuck at the most basic part!! This is being hosted on a linux godaddy server. File Structure: /news....