mariocesar Posted October 25, 2006 Share Posted October 25, 2006 Please help, I got this message:Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/content/m/a/r/mariocesar/html/qteuploadcode.php on line 73in this line:[code]<?mail($toAddress,$recipientSubject,$mailContent,"From:$row['email']"); ?>[/code]thanks. Link to comment https://forums.phpfreaks.com/topic/25014-resolved-how-can-i-fix-this-line/ Share on other sites More sharing options...
.josh Posted October 25, 2006 Share Posted October 25, 2006 need to throw in some { } around your variable there, to keep php from being confused. [code]<?phpmail($toAddress,$recipientSubject,$mailContent,"From:{$row['email']}"); ?>[/code] Link to comment https://forums.phpfreaks.com/topic/25014-resolved-how-can-i-fix-this-line/#findComment-114012 Share on other sites More sharing options...
mariocesar Posted October 25, 2006 Author Share Posted October 25, 2006 thanks is working now. Link to comment https://forums.phpfreaks.com/topic/25014-resolved-how-can-i-fix-this-line/#findComment-114189 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.