Hi,
First let me say I am not a PHP programmer. I am simply trying to edit some code and I am getting the Parse error syntax error, unexpected T_ECHO
This is the line of code that is providing the error
echo 'WENEEDTHIS->'.$_R.'<-WENEEDTHIS';
FROM THIS
Can anyone tell me what is missing from that line?Code:$_X=base64_decode($_X);
$_X=strtr($_X,’123456aouie’,’aouie123456′);
$_R=ereg_replace(’__FILE__’,”‘”.$_F.”‘”,$_X);
echo 'WENEEDTHIS->'.$_R.'<-WENEEDTHIS';
$_R=0;
$_X=0;
Thanks bunches!!![]()
Last edited by Orjan; 03-03-2010 at 02:10 AM.
I think it was the character you were using for your single/double quotes... I used these and it worked fine without an error.Code:<?PHP
$_X=base64_decode($_X);
$_X=strtr($_X,'123456aouie','aouie123456');
$_R=ereg_replace('__FILE__',"‘".$_F."‘",$_X);
echo 'WENEEDTHIS->'.$_R.'<-WENEEDTHIS';
$_R=0;
$_X=0;
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks