View Single Post
  #5 (permalink)  
Old Jan 19th, 2007, 16:21
masonbarge's Avatar
masonbarge masonbarge is offline
Highly Reputable Member
Join Date: Jan 2006
Location: Atlanta GA
Posts: 631
Thanks: 0
Thanked 0 Times in 0 Posts
Re: I don't _GET it!

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 />'; }
Reply With Quote