getathaivisa Posted September 28, 2010 Share Posted September 28, 2010 Hi. I am pretty new to coding and i have been doing a bit of repair work to one of my websites that was coded by someone else. I have a multi-language portal, and in the english file there is a text string that displays on the page for registration success. The terxt string itself should be showing the email address just used to sign up...see below. $lang[183]['title']="Thank you, your form has been submitted successfully. We have sent an email. to <".$data['email']."> To activate your account. Please check your junk or spam folder if it is not in your inbox... sometimes your email provider will read the activation email as spam, and put it into your junk folder. To prevent this from happening, please add us to your contacts list."; this is what is showing on the actual frontend page Thank you, your form has been submitted successfully. We have sent an email to <> To activate your account. Please check your junk or spam folder if it is not in your inbox... sometimes your email provider will read the activation email as spam, and put it into your junk folder. To prevent this from happening, please add us to your contacts list. What would you suggest was the problem? Thanks in advance Quote Link to comment Share on other sites More sharing options...
Pikachu2000 Posted September 28, 2010 Share Posted September 28, 2010 The $data['email'] array element has no value. Without seeing some code, that's as specific as I can be. Quote Link to comment Share on other sites More sharing options...
haku Posted September 28, 2010 Share Posted September 28, 2010 Either that or the browser is reading it as an HTML tag due to the opening and closing <>. Try changing those to square brackets []. Quote Link to comment 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.