Link to home
Start Free TrialLog in
Avatar of Xtry
Xtry

asked on

include in die

hello there,
is there anyway i can have in

die ("you need to have 5 points");

and include something like

include ("help.html"); ???

thanks for any help!
Avatar of Xtry
Xtry

ASKER

i want instead of showing me the message "you need to have 5 points" i want to show  the help.html
if you are excecting an SQL query with die, you can use something like this:

$result = mysql_query("your_sql_query_here");

if(!$result) {
   include "help.html";
}
ASKER CERTIFIED SOLUTION
Avatar of hernst42
hernst42
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ok if the msg should not be displayed remove that echo from the function