Hello, Im an absolute newbie in PHP,
I know just enough to install simple pre-created scripts...
Im trying to create a new web site, but im having problems with, what I think, clashes of ID urls.
Let me explain...
Without any add-on scripts, each page on my site opens in the central so-called frame using this URL: ../index.php?id=PageName (where PageName is the name of the file located in the same directory as index.php
Just to make it clear, my site (before any add-on scripts are added) has absolutely no php statements added....
Anyway, after I installed an add-on article script, which uses the same urls, but using number at the end of the IDs, like index.php?id=3
So now, when I try to open features.php page using this url (index.php?id=features) i get an error saying that the following article doesnt exist and I have no way to link to that page... opening www.mysite.com/features.php will open the page itself, but I need this page to be opened in the "frame" (its not actually a frame, but a table) so the visitor would be able to select another page from the side links located on the left side...
As far as my php knowledge goes (which is not far), I think thats because the IDs of my site and the IDs of that add-on article script clash together producing the error message...
So my question is, how do i fix this...?
For example is there a way to link to the features.php page using a url like this: index.php?id2=3 (notice the 2 after id)?
Or is there another solution to this problem?
Thank you in advance 🙂