Hello All!
I am getting this error
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting ']' in /home/warezspo/public_html/register.php(517) : eval()'d code on line 3
Someone plz help me resolve this.Thanks :)
AaronC
10-08-2009, 08:05 PM
Can you post line 3, may help :)
I have attached the complete register.php file in .txt format :) Ty :)
well
line 517
eval(fetch_email_phrases('welcomemail'));
there are meny include pages. look for one of them for the "fetch_email_phrases" function or contact this script creator that is familiar with his own code.
oracleguy
10-09-2009, 04:26 PM
Eran, told you what the problem is, the problem is in fetch_email_phrases or one of the functions it calls. And based on the error, it sounds like you just forgot a closing ].
Nope , i tried editing the fetch email phrase, but still getting error.
Actually i wasnt just asking where the problem is, i was asking for solution to the problem :(
So any1 else cud help ?
CFMaBiSmAd
10-09-2009, 06:58 PM
eval()'d code on line 3
The error occurred on line 3 of the php code that fetch_email_phrases('welcomemail') returns. I guessing that the 'welcomemail' parameter specifies a template that you have edited.
You would need to echo what fetch_email_phrases('welcomemail') returns, instead of eval'ing it to track down what is causing the problem.
The error occurred on line 3 of the php code that fetch_email_phrases('welcomemail') returns. I guessing that the 'welcomemail' parameter specifies a template that you have edited.
You would need to echo what fetch_email_phrases('welcomemail') returns, instead of eval'ing it to track down what is causing the problem.
Thanks!
So nice of you.:)
Error resolved :thumbsup::thumbsup: