Jump to content

PHP echo question please help is this possible?


mtanner

Recommended Posts

Firstly, Thanks in advance. 

My question, and hopefully it can be understood and answered as simple as possible is, I am trying to echo a php include is this possible? I have a CMS (cutenews) that allows me to use templates and include them via php into my design. On top of that I am using an ajax dynamic tab script for my navigation that echos content from a file content.php. yes, yes I understand this is not conventional, valid or accesable, but I like it. What i am trying to do is instead of echo-ing text I want to echo the cms php include like thus...

content.php

<?php

if ($_GET['content'] == 1) {
echo '<?PHP
$number=1;
$template="homepage";
$category=1;
$static=TRUE;
include("/hsphere/local/home/mydomain/mydot.com/pressroom/show_news.php");
?>'\; }

if ($_GET['content'] == 2) {
echo 'Content for Page 2'; }

if ($_GET['content'] == 3) {
echo 'Content For Page 3'; }

?>

What am I doing wrong, all the other tabs work fine?
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.