Jump to content

jfgreco915

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

jfgreco915's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Yes it is ignoring the includes and/or require at the top and the bottom.
  2. .htaccess code for rewrite [code] RewriteEngine On RewriteRule ^news/(.*) /view_news.php?t=vn&nid=$1 [/code] Page being redirected to. [code=php:0] <? include('header.php'); ?> <table align="center" cellpadding="0" cellspacing="0"> <tr> <td align="left" class="news-head">News Archives -></td> </tr> <tr> <td align="left" class="padding"> <br> <? switch ($_GET['t']) { case('vn'): $bfd->view_news(); break; default: $bfd->list_all_news(); break; } ?> </td> </tr> </table> <br> <? include('footer.php'); ?> [/code]
  3. I have mod_rewrite working. However when it loads up the page it seems to ignore the include(example.php) and/or the require(example.php) Any ideas?
×
×
  • 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.