How to pop an alert message box using php?
The alert message just like a popup window on the screen. Using this you can alert to the user with some information and message.
1. Code:
alert('$message');";
}
// Function call
function_alert("Welcome to Soltuts.com");
?>
2. Example:
Input:
Message: "Welcome to Soltuts.com"
Output:
Run the PHP program to pop up an alert box on the screen with the above message.