Hy!
What I realy want is something like this :
<a href="index.php?action=procesoare&tip=amd">AMD</a>
<a href="index.php?action=procesoare&tip=amd">INTEL</a>
....
<?
if ($action == 'procesoare'){
include"procesoare.php?tip=$tip";
}
?>
If I could use something like include "procesoare?tip=$tip" i wont need to write so much code, like here :
include "mainboard.php?tip=ecs";
..
include "mainboard.php?tip=msi";
..
include "mainboard.php?tip=gigabyte";
and other components where are many producers
Now I made for all my site , the long version, with include for every producer (ecs, gigabyte, msi).
10x anyway and see ya