Passing two variables localy in php includes
I want to pass
<?php include("http://www.domain.com/site/script.php?go=type&pid=1"); ?>
Locally like
<?php
$go = "type";
$pid = "1";
include("/usr/local/apache/sites/home/domain.com/public_html/site/script.php"); ?>
but it doens't work, please help. i can pass "type" but not pid.
|