How to add popup window in php ? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

How to add popup window in php ?

display message for user then transaction complete....

13th Jan 2018, 10:02 AM
sunil bhise
sunil bhise - avatar
2 Réponses
0
For a popup javascript is required. Put this in your header: <script> function myFunction() { alert("I am an alert box!"); // this is the message in "" } </script> And this in your body: <input type="button" onclick="myFunction()" value="Show alert box"> from the link below : https://stackoverflow.com/questions/15659522/popup-window-in-php
13th Jan 2018, 10:18 AM
SunizPro