Jump to content

php pages not being rendered properly - require_once


ferrethouse

Recommended Posts

Here is the source code...

 

<?

require_once 'configuration.inc.php';

require_once dirname(__FILE__).'/../framework_v5/framework.inc.php';

... etc ...

 

And when I do a "View Source" in the browser I get the same thing. I set up the php isapi extension in IIS. What am I missing?

Sorry - I was wrong in my initial post. Here is the source code for the index.php page...

 

<?php

 

require_once '../include.inc.php';

 

$newsQuery = Query::Construct( 'news_release');

$newsQuery->AddConstraint( 'status', new Equal('published'));

$newsQuery->SetOrderBy('publish_date');

 

$toDate =date("Y")."-".date("m")."-".(date("d")+1);

$fromDate =date('Y-m-d',mktime(0,0,0,date("m")-6,date('d'), date('y')));

$newsQuery->AddConstraint( 'publish_date', new GreaterThan($fromDate));

$newsQuery->AddConstraint( 'publish_date', new LessThan($toDate));

 

$entityList = $newsQuery->GetEntityList();

 

$latestNews = "";

 

foreach ($entityList->GetList() as $instance){

 

$id = $instance->Get('id');

$date = $instance->Get('publish_date');

$title = $instance->Get('title');

 

$latestNews.=Template('latest_news_item', array('date'=>$date, 'title'=>$title, 'id'=>$id));

 

}

 

print Template('index',array ('latest_news'=>$latestNews));

 

?>

 

This page...

require_once '../include.inc.php';

 

Contains...

<?

require_once 'configuration.inc.php';

require_once dirname(__FILE__).'/../framework_v5/framework.inc.php';

 

I don't have to include "php" in the included pages too do I?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.