I have a problem in display or echo in php.
what method should i follow if i the problem is with like this:
example code:
$email = trim($_REQUEST["email"]);
if(strlen($email) < 1){
echo "0__notice__Email is empty.";
}
but the output should display only this part
"Email is empty." only and not the whole echo.
"Email is empty." --> this part only
"0__notice__Email is empty." --> not the whole display like this.