
April 29th, 2000, 05:41 PM
|
|
Contributing User
|
|
Join Date: Mar 2000
Location: Ontario, Canada
Posts: 498
  
Time spent in forums: < 1 sec
Reputation Power: 17
|
|
|
Well, it's not working because . is used to join strings in PHP. Do this instead:
$mastervar = (string) $var1 . "." . $var2;
That should solve your problem, if I understand it correctly.
------------------
To alcohol! The cause of, and solution to, all of life's problems. -- Homer Simpson
|