If I access a page such as link
Using the following GET:
<?php echo ($_GET["cor"]) ; ?>
The name Blue will be printed.
Is it possible to get a include instead of the name " Blue ?"
Example: If the person types: link
Instead of just printing the word " Green ", a
<div>
that is inside the file that has been pulled into the include, example (green.php) :
<div>A cor selecionada foi <b>verde</b> </div>
The question is simple, is it possible to have a GET pull an include?