Answers for "php pop up box"

PHP
4

popup in php

<body>
<?php
$message='Here is an alert message written by php';
 
echo '<script type="text/javascript">window.alert("'.$message.'");</script>';
?>
</body>
Posted by: Guest on June-07-2021
0

popup en php

<script>alert("<?php echo htmlspecialchars('Voici un message en JS écrit par PHP', ENT_QUOTES); ?>")</script>
Posted by: Guest on June-04-2021

Browse Popular Code Answers by Language