if browser url is having query string after domain name in it check using php code example
Example 1: if browser url is having query string after domain name in it check using php
$url = $_SERVER['REQUEST_URI'];
if (!strpos($url,'mysql')) {
echo 'No mysql.';
} else {
echo 'Mysql exists.';
}
Example 2: if browser url is having domain in it check using php
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if (!strpos($url,'mysql')) {
echo 'No mysql.';
} else {
echo 'Mysql exists.';
}