I have a database table with the name of validation that contains data like
vNo Chkvalidate
1 Check_Value ('Category_Code', '', '', '1', '', '1')=1
2 Check_Value ('Category_Code', '', '', '2', '', '')=1 AND Check_Value ('Subject_Code', '', '', '1', '', '1')=1
The function definitions written in validation.php file like this:
function Check_Value($col_name, $to_range, $from_range, $list_value, $stat, $counter)
{
// Some definition here...
}
How can I invoke the function Check_Value when I fetch record row by row from validation table...?
=1)? The function that shall not be named seems to be the easiest way.... but its evil!Check_Valuefunction as in your last question? stackoverflow.com/questions/4615468/…