Guest_imported
New member
- Jan 1, 1970
- 0
Okay.. this is my problem.. i want to put a var and an word together without a space... in java it is possible with a "+". How about PHP??
$type="meat";
echo "$type loaf";
(this returns "meat loaf" but I want to get rid of the space! --> meatloaf)
$type="meat";
echo "$type loaf";
(this returns "meat loaf" but I want to get rid of the space! --> meatloaf)