Mlam main page |
|
The beautiful title (1) | |
(2)Hello, Mr. beautiful There are 3 beautiful members and 8 beautiful but anonymous people here | (3)Beautiful article (read 18 times) Excellent content of this beautiful article showing incredible things |
CREATE TABLE gestion_cache ( id bigint(20) DEFAULT '0' NOT NULL auto_increment, etat tinyint(4) DEFAULT '0' NOT NULL, url tinytext NOT NULL, url_complete mediumtext NOT NULL, hash_url int(6) DEFAULT '0' NOT NULL, hash_var int(6) DEFAULT '0' NOT NULL, date_modif date, PRIMARY KEY (id), KEY id (id), KEY hash_url (hash_url), KEY hash_var (hash_var) ); |
$base=connecte_base("your_base",1); (1) $objet_cache = new CacheManager("cache_directory","site_main_url"); (2) print $objet_cache->GetUrl("dir/content_article","id=$id"); (3) |
$base=connecte_base("your_base",1); (1) $objet_cache = new CacheManager("cache_directory","site_main_url"); (2) $objet_cache->ClearCache("site/dir/content_article","id=$id",1); (3) |
$insert = mlam_table_change("table",array("col1"=>"value1","col2"=>"value2","col3"=>"value3")); |
$insert = mlam_table_change("table",array("col1"=>"value1","col2"=>"value2","col3"=>"value3"),array("col4"=>"value4","col5"=>"value5")); |