I've noticed that I'm only able to pass
http://www.domain.com/site/script.php?go because register globals is off so i need to use _GET instead. I have tried this
<?php
$go = $_GET['type'];
include '/usr/local/apache/sites/home/domain.com/public_html/site/script.php';
?>
but it only passes go without the value
http://www.domain.com/site/script.php?go
what am i doing wrong?