Can any want show me how to insert a java alert in a php script.
tHANKS ,,,
Below is my script
<?php
if ( isset ( $actionflag ) && $actionflag=="login" )
{
if ( empty( $form[login])||empty( $form[password]))
///CAN I INSERT A POPUP ALERT SCRIPT HERE?
//////////
?>
/// my form start here /////
///////////
<form action="<?php print $PHP_SELF;?>">
<input type="text" name="form[login]">
<input type="text" name="form[password]">
<input type="submit" name="Submit" value="Submit">
<input type="hidden" name="actionflag" value="login">
<input type="hidden" name="<?php print session_name() ?>"
value="<?php print session_id() ?>">
</form>
//////////////
/// my form end here /////