You are here: C97net • 5.01 General Functions
Terminate a script and display a message.
function msg_die ($msg_id = '', $msg_txt = '', $url = '')
Calling function will terminate your script, throw back to $url, and display message in $msg_id, or $msg_txt.
If $url is empty, it will redirect back to previous URL.
You must define $msg_id in /msg.php.
$msg_txt may contain additional message, or a text to display.
You can also use echo as $msg_id to force qE to display any message in $msg_txt.
Example 1
<?php
require './includes/user_init.php';
msg_die ('echo', 'You are dead!');
?>
This will redirect back visitor to previous page (URL), and display a message, "You are dead!".
There is no comment. Why not be the first?