popup in php

Solutions on MaxInterview for popup in php by the best coders in the world

showing results for - "popup in php"
Lennard
19 Jan 2017
1<body>
2<?php
3$message='Here is an alert message written by php';
4 
5echo '<script type="text/javascript">window.alert("'.$message.'");</script>';
6?>
7</body>
8
Lennart
30 Jun 2016
1<body>
2<?php
3$message='Voici un message en javascript écrit par php';
4 
5echo '<script type="text/javascript">window.alert("'.$message.'");</script>';
6?>
7</body>
8
Alessandra
17 Jul 2018
1<script>alert("<?php echo htmlspecialchars('Voici un message en JS écrit par PHP', ENT_QUOTES); ?>")</script>
2