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?

Link to comment
Share on other sites

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?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.