On Thu, 17 Oct 2002, Adam Fields wrote: > $one = '1'; > $two = '= $one'; > > Is there a way to get $two to equal '= 1' (or whatever $one happens to > contain, obviously)? $two = "= $one"; -adam