1
I’m trying to make a keyword detection system.
Type: "asdfghjlzzTESTEzzxcvbnm"
And I have to put in the condition, to see if there is or not the X word
if($palavraChave == "TESTE"){
echo "exist";
}else{
echo "not exist";
}
My problem is how I will be detecting the word 'key' even though there is no space between them.
Thanks, it worked right....
– João