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. Quote 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] Quote 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. Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.