php - If url is /store/*
188
<?php
if($_SERVER['REQUEST_URI']=='/store/') {
Echo 'YES!';
}
?>
What I want it to do is echo YES! If the url is /store/hfbfifigkrigkg or if its /store/hellosister So I need something like the * who is used in other languanges as EVERYTHING
THANKS
Answer
Solution:
This might work:
Answer
Solution:
try with strpos() and other many functions you can match like OP answers
Answer
Solution:
You could try this: