mariocesar Posted September 17, 2009 Share Posted September 17, 2009 Hi this is the code to send some info by e-mail $msgs="A new request from Central just arrive! from $username for design# $designname.<br><br> E-mail: $email.<br><br> link to see the design: www.allstatecentral.com/images/design/$designcatid_$designdesignid.$designext<br><br> Contact Number: $contactno."; but the $designcatid don't show may be because the underscore after. Link to comment https://forums.phpfreaks.com/topic/174543-underscore-dont-show-on-e-mail-message/ Share on other sites More sharing options...
Bricktop Posted September 17, 2009 Share Posted September 17, 2009 Hi mariocesar, You need to define the break between the PHP code ($designcatid and $designdesignid) and the HTML code (_). Change your code to read: $msgs="A new request from Central just arrive! from $username for design# $designname.<br><br> E-mail: $email.<br><br> link to see the design: www.allstatecentral.com/images/design/$designcatid'_'$designdesignid.$designext<br><br> Contact Number: $contactno."; Hope this helps. Link to comment https://forums.phpfreaks.com/topic/174543-underscore-dont-show-on-e-mail-message/#findComment-919955 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.