ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/thietkewebvumi.com/lib/searchSQL/ |
This is a basic MySQL search engine class you can use immediately to your site. All you have to do is fill up basic database configurations. Steps: 1. Specify your host, username, password in array form 2. Specify the tablename you want to use 3. Specify primary key field of the table 4. Specify the fieldnames of the table you want to look up Example: /* <?php require_once 'class.search.php'; $config = array('localhost','root','','database'); // basic db configurations $table = 'bizmain'; // tablename you want to search $key = 'biz_id'; // primary key field of the table $fields = array('biz_name','biz_address','biz_cat'); // fieldnames of the table // you want to look up for keyword occurence $keyword = $_POST['keyword']; $found = new search_engine($config); $found->set_table($table); $found->set_primarykey($key); $found->set_keyword($keyword); $found->set_fields($fields); $result = $found->set_result(); print_r($result); ?> */