Page 1 of 1

proper syntax SP?

Posted: Tue Aug 29, 2006 8:50 pm
by jasondavis

Code: Select all

$roomname = '&init_room=1008';
I'm having trouble here I need for 1008 to be a variable like

Code: Select all

$roomname = '&init_room=$room';
what is the proper way to do it?

Posted: Tue Aug 29, 2006 8:53 pm
by Luke
This is what I do... what is the "right" way is debatable

Code: Select all

$roomname = '&init_room=' . $room;