Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts

Wednesday, February 20, 2013

Show Message Box in Php using Javascript

Most of the User wants to show message box after some process happens in Webpage.
But in Php you can't show message box like you have done in javaScript.
But you can use javascript in php to show message box.

This code is use to show message box in Php file using javascript.

<?php
..... ..  your php code......


echo "<script type='text/javascript'>\n";
echo "alert('you are Succesflly registered');\n";
echo "</script>";

>



Read More
26 comments: