<?php
// PHP program to pop an alert
// message box on the screen
// Function definition
function function_alert($message) {
// Display the alert box
echo "<script>alert('$message');</script>";
}
// Function call
function_alert("Welcome to Geeks for Geeks");
?>