0
How to add popup window in php ?
display message for user then transaction complete....
2 ответов
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