Posted by mac
2015-01-27

Hi Tom,
I want to include this validation and format before insert on databases(when save on add new)
http://technologyordie.com/php-mac-address-validation
Posted by Tom
2015-01-29

I'll point out where the script saves data. Open web/staff/app/cls_ps_(table-name).inc.php[/b] and find the following lines.
[code]//-- [BEGIN] Save data into database
$def->SetList( $this->fs_reg_save );
$id = $def->InsertRecordSet();
//-- [END] Save data into database
[code]This is the code that saves data into the database. If you want to validate data, you can place your validation code before it.