Guest_imported
New member
- Jan 1, 1970
- 0
I have been trying to make a site that uses includes to insert different articles depending on the links this way:
Link:
And articles.php has the following include:
<?php
include('article' . $article_id . '.html');
?>
So that would insert article1.html.
That gives me the following error:
Error 0: not found
Any ideas how I might get that to work using includes and variables in the url?
Link:
And articles.php has the following include:
<?php
include('article' . $article_id . '.html');
?>
So that would insert article1.html.
That gives me the following error:
Error 0: not found
Any ideas how I might get that to work using includes and variables in the url?