deansaddigh Posted January 3, 2010 Share Posted January 3, 2010 <?php echo "<p class="product_description"> . "click image for bigger view</p>";?> Link to comment https://forums.phpfreaks.com/topic/187051-how-do-i-concatinate-this-string/ Share on other sites More sharing options...
proud Posted January 3, 2010 Share Posted January 3, 2010 Try this one: <?php echo "<p class='product_description'>" . "click image for bigger view</p>"; ?> Link to comment https://forums.phpfreaks.com/topic/187051-how-do-i-concatinate-this-string/#findComment-987783 Share on other sites More sharing options...
gizmola Posted January 3, 2010 Share Posted January 3, 2010 If you want to implement a string constant, then just use the single quotes. echo ' click image for bigger view'; Link to comment https://forums.phpfreaks.com/topic/187051-how-do-i-concatinate-this-string/#findComment-987786 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.