Please help, i am new to php this is a software i bought and now i am trying to do some modifications:
I dont find the table called SETTINGS_TABLE under the database, is there a way to find the name of the table: PLease help.
////////// settings
$strSQL = "select value, name from ".SETTINGS_TABLE." where name in ( 'min_age_limit', 'max_age_limit','zip_letters', 'zip_count') ";
$rs = $dbconn->Execute($strSQL);
while(!$rs->EOF){
$settings[$rs->fields[1]] = $rs->fields[0];
$rs->MoveNext();
}
Thank you very much for the information.