xxxxxxxxxx
<?php
alert("Hello World");
function alert($msg) {
echo "<script type='text/javascript'>alert('$msg');</script>";
}
?>
xxxxxxxxxx
echo "<script>
alert('There are no fields to generate a report');
window.location.href='admin/ahm/panel';
</script>";
xxxxxxxxxx
// This is in the PHP file and sends a Javascript alert to the client
$message = "Something";
echo "<script type='text/javascript'>alert('$message');</script>";
xxxxxxxxxx
echo '<script type="text/javascript">alert("'.$error.'");</script>';