|
|
|
Very often its nice to notify the user of something with an alert pop-up
Add this snippet to your common include file page
|
/*************************************************************************
alert box popup confimation message function
*************************************************************************/
function confirm($msg)
{
echo "<script langauge=\"javascript\">alert(\"".$msg."\");</script>";
}//end function
and call it like this:
<?
include("common.php");
$msg = "Hello World!";
confirm($msg);
?> | | |
|
| Local Time clock and Server time usign PHP and JavaScript Categories : PHP, Java Script, Date Time, Beginner Guides | | | Newbie Notes #9 - Hyperlinking a post Categories : PHP, Java Script, HTML and PHP, Beginner Guides | | | PHP and javascript mouseover, mouseout, and mousedown events Categories : PHP, Java Script, Form Processing, Beginner Guides | | | Popup window creator for images on the Fly. Categories : PHP, GD image library, Java Script | | | JavaScript dropdown list menu to switch any page. Categories : Java Script, Beginner Guides, Form Processing | | | Local-to-user date and time display regardless of time zone or where the website's server is located Categories : PHP, Date Time, HTML and PHP, Java Script | | | Simple PHP Form Field Generator Categories : PHP, Beginner Guides, Form Processing, HTML and PHP | | | Script loading time Categories : PHP, Beginner Guides, Date Time | | | Different Call User Functions Categories : PHP, Functions, Beginner Guides | | | Dynamic Calendar in PHP, Javascript and HTML. Categories : PHP, Java Script, HTML and PHP, Calendar | | | Reverse a given number Categories : PHP, Beginner Guides, Algorithms, Math. | | | Simple SOAP Example (with SoapClient) Categories : PHP, Web Services, SOAP, Beginner Guides | | | PHP based Contact email form with multiple recipients, text file based, supports departments. Categories : PHP, Email, Beginner Guides, Filesystem | | | KuPro1.0 - This application is for Libraries, To see their books and to maintain users books. This version is in Turkish, future vers may have English Support.
Categories : PHP, Java Script, DHTML | | | Linked comboboxes with php-mysql & javascript Categories : PHP, Java Script, Databases, MySQL | |
|
|