Jump to content

mtanner

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Posts posted by mtanner

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