How do you connect data to string information in PHP?

Noobtaculus

New member
Like in Java you'd have
String myString = "hello " + integerVar;
where integerVar is and integer variable; you're using a + to connect the two. How do you do this in PHP?
 
Back
Top