Respected all, i'm in trouble. I created a file with name validation.php and store all my validation functionality in this file with different function names like,
check_textbox(parm1, pram2, pram3, pram4) { // Definition here }
check_chkBox(parm1, pram2) { // Definition here }
ve böylece .....!
then i created a table in mysql with the name tbValidation and stored all the function name with parameters in a table. the record stored in table look like as:
ArabirimKimliği ---------- functionNameWithReturnValue
1 ------------ check_textbox (parm1, pram2, pram3, pram4) = 1
2 ------------ check_textbox (parm1, pram2, pram4) = 0
3 ------------ check_textbox (parm1, pram2, pram4) = 1) VE (check_chkBox (parm1, pram2) = 0)
i veritabanından kayıt getir zaman ben validation.php depolamak bu işlevleri çağırmak istiyorum
$data = mysql_fetch_array($drow);
if($db->row_count > 0)
{
// when i fetch row one from database. I used this one but not working
// @ $data[0] have value "check_textbox(parm1, pram2, pram3, pram4) = 1"
if($data[0])
{
// Do this
}
}
I ... Bu görevi nasıl yapabilirim? (