saimod_mail/sql/CONTACT_INSERT.php
Ulf Gebhardt ea19cf8d71
php8.3 fix
replace all get_class() calls without argument which is depected from
php 8.3 onward
2024-11-19 22:40:17 +01:00

9 lines
272 B
PHP

<?php
namespace SQL;
class CONTACT_INSERT extends \SYSTEM\DB\QP {
public static function get_class(){return static::class;}
public static function mysql(){return
'INSERT IGNORE INTO contact (email,sex,name_first,name_last,organization)VALUES(?,?,?,?,?);';
}
}