eddy556 Posted June 1, 2008 Share Posted June 1, 2008 How do I append a variable with a string? For example: $variable . "extra text"; I want to be able to do this without first assigning the "extra text" into a variable. Many thanks Link to comment https://forums.phpfreaks.com/topic/108270-solved-append-string-onto-a-variable/ Share on other sites More sharing options...
.josh Posted June 1, 2008 Share Posted June 1, 2008 $variable .= "extra text"; Link to comment https://forums.phpfreaks.com/topic/108270-solved-append-string-onto-a-variable/#findComment-555047 Share on other sites More sharing options...
eddy556 Posted June 1, 2008 Author Share Posted June 1, 2008 Many thanks Link to comment https://forums.phpfreaks.com/topic/108270-solved-append-string-onto-a-variable/#findComment-555063 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.