
11-02-2008, 11:10 PM
|
 |
|
|
Join Date: Mar 2007
Location: New York
Posts: 59
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Using Global.php on a dynamic Non-VB Page
Currently, I'm using this modification (Simple vB User Login). It works well and does great to login and logout. In fact the script works absolutely fine.
However, on my main website, I am experiencing a unique problem whereby each time I click on a dynamic link (index.php?p=whatever_page), it immediately goes to (index.php?p=faq) which is listed first in a long list of id's. I checked the code in the file where I have listed all of my id's and it seems to work correctly (and it also works correctly when I comment out the global.php file).
I was able to isolate the conflicting problem, whenever I utilize and declare my global.php at the top site, it seems to cause this minute error. I was wondering if someone could enlighten me about what is exactly conflicting. I can post full-length codes of both files, if needed. But I'm struggling with this.
Here is a snippet of my get_id file.
PHP Code:
switch($_GET['p']) { case faq: include ('faq.php'); break; case staff: include ('staff.php'); break; case affiliation: include('affiliation.php'); break; case linktous: include('linktous.php'); break; // Goes On For Several Lines..... }
|