hello
when i echo for example $mm it will read a text from mysql and print this text very well on the output page,
now i want to use this text, if this text equal to my text ,then include final.php in the page
briefly :
$mm= ...php code to gain text from sql row ;
$mytext = "passed"
and now if these strings are equal , $mytext=$mm , then include final.php
thanks for your help;
equality help
Moderator: General Moderators
Re: equality help
Code: Select all
if($myText == $mm){
include("final.php");
}