Dear all sister and brother,
I hope your work and you are ok.
Now I would like to ask you one question about code, I use php raw and I meet the problem.
code is not run to insert into Database but when I was exit or die function to stop statement, it can insert into database and if I do not exit or die to stop statement it do not insert into database why it is like this? I do not know to solve it please help me.
Ex:
: work.
if($aaa != "")
{
statement;
}else{
statement;
exit;
}
: not work
if($aaa != "")
{
statement;
}else{
statement;
}