coder9 Posted July 19, 2008 Share Posted July 19, 2008 ok let say i have a string and a integer value of a variable that needs to be concantenation each other. let say i have, 'box' //string name. and $tmp_value = 8 //variable with value 8 now i want to concantenation these two. is this correct? $tmp_= "box ' . $tmp_value . '"; any advice please. Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted July 19, 2008 Share Posted July 19, 2008 No, its: $tmp_ = 'box' . $temp_value; Quote Link to comment Share on other sites More sharing options...
coder9 Posted July 19, 2008 Author Share Posted July 19, 2008 No, its: $tmp_ = 'box' . $temp_value; thank you wildteen88 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.