php自定義函數之簡單提示框alert,方便輸出提示信息。
/*&md
ash;————————————————— */
//– 簡單提示框函數
/*—————————————————— */
function alert ($msg,$url=")
{
$str = '<scr
ipt type="text/javascript">';
$str.="alert('".$msg."');";
if ($url != ")
{
$str.="window.location.href='{$url}';";
}
else
{
$str.="window.history.back();";
}
echo $str.='</script>';
}