I want to show error as window browser alert
like - Click Here
But i want to use URL
as - Click Here
Is there any way to use?
I Have Code Below:
<?php
if(isset($_GET['i'])){
echo '<script type="text/javascript">alert("INFO: ' . $_GET['i'] . '");</script>';
}
?>