Re: script stoped working over christmas ? (whoops)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Whoops sorry the include should be ....
include("/home/sever2/public_html/teaup/article/latest.php")
Chris

In news: E7.44.31404.D9E26774@xxxxxxxxxxxx - "Joker7"  wrote :
>> Can anyone see why this has stopped working...
>> latest.php is used with <?
>> include("/home/sever2/public_html/teaup/article/article_summary.php")
>> ?> to show the latest news articles.
>>
>> Cheers
>> Chris
>>
>> config.php
>> <?php
>> $max_summary = 6;
>> $max_latest = 7;
>> $summary_template = "t_summary.tp";
>> $article_template = "t_article.tp";
>> $password = "password";
>>>
>>
>> latest.php
>> <?php
>>
>>  require('config.php');
>>
>> $filename = "article_summary.php";
>>
>> #- open article summaries
>> if(file_exists($filename)){
>>  $fh = fopen($filename, "r");
>>  $old_news = fread($fh, filesize($filename));
>>  fclose($fh);
>> }
>>
>>    #- get article
>> $articles = explode("<!--ARTICLE-->", $old_news);
>> $i=0;
>> foreach ( $articles as $article ){
>>  if(count($articles)>$i){
>>   if($max_latest >= $i++){
>>    print $article;
>>   }
>>  }
>> }



-- 
Cheap As Chips Broadband http://yeah.kick-butt.co.uk
Superb hosting & domain name deals http://host.kick-butt.co.uk 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux