can someone tell me whats wrong with this script?
if ($_GET['theme'] = "1"){$main = "index1.php";}
if ($_GET['theme'] = "2"){$main = "index12.php";}
if (empty($_GET['theme'])){$main = 'index1.php';}
include "$main";
what happens is that it prints out 'index12.php' everytime and the 1 or 2 isnt making the difference