That quote syntax is downright Byzantine. It's the single quotes that are killing you. Just write
- Code: Select all
$thissite=$_GET['ws'];
print "thissite = $thissite";
If that doesn't work, narrow the problem with a few random tests like
- Code: Select all
if ($_GET['ws']) { print "<br />$_GET['ws']<br />;
}else{
print '<br />no variable<br />'; }