ddotdukes Posted June 20, 2006 Share Posted June 20, 2006 Here is my line of code:<?php echo $row_rsEvent['Name'],[:],$row_rsEvent['Date'], $row_rsEvent['Time']?>Is there a way to put symbol in between the data. What I would like to have is something like :: or || betweem the data. Link to comment https://forums.phpfreaks.com/topic/12482-using-symbols/ Share on other sites More sharing options...
obsidian Posted June 20, 2006 Share Posted June 20, 2006 [!--quoteo(post=386120:date=Jun 20 2006, 02:55 PM:name=ddotdukes)--][div class=\'quotetop\']QUOTE(ddotdukes @ Jun 20 2006, 02:55 PM) [snapback]386120[/snapback][/div][div class=\'quotemain\'][!--quotec--]Here is my line of code:<?php echo $row_rsEvent['Name'],[:],$row_rsEvent['Date'], $row_rsEvent['Time']?>Is there a way to put symbol in between the data. What I would like to have is something like :: or || betweem the data.[/quote]just use quotes instead of the brackets:[code]<?phpecho $row_rsEvent['Name'] . ':' . $row_rsEvent['Date'] . ':' . $row_rsEvent['Time'];?>[/code] Link to comment https://forums.phpfreaks.com/topic/12482-using-symbols/#findComment-47776 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.