Well, I'm guessing you are trying to say this:
IF the variable article is equal to: "Stripper on the loose", then include this file.
ELSEIF the variable 'article' is equal to: "Pumpkin Farmer", then include this file.
ELSE include this file.
If that is correct, you have a major flaw in your code.
When comparing two items (strings, numbers, values) you use ==. When setting variables you use =.
So I think your code should look like:
<?php
if($article == "Stripper on the loose");
{
echo include("stripper.php");
}
elseif($article == "Pumpkin Farmer");
{
echo include("pumpkin.php");
}
else
{
echo "error";
}
?>
Otherwise $article is getting written to.
~Brett