Hi there guys,
Sorry for the rediculously simple question, but my Super-Duper Sam's book doesn't seem to have the answer, and I'm not doing so well at finding it in the php manual.
I'm making a login search script where someone has to enter two characters in one box then a 6 digit number in another box. On the results page, I'm trying to get those two variables to make one:
$initials=js
$digits=000000
should make:
$result=js000000
I've tried
$result=($initials,$digits);
$result=(($initials)($digits));
And a lot of other things, but it's obvious that I didn't do it right because I keep getting a lot of different errors.
Can someone help me figure out how to merge two variables into one?
Thanks very much for your time,
json