Select bettwen in Where condition in mysql
In my MySQL to select between data
Example:
SELECT id, current_role_in_khmerFROM currentroleWHERE id NOT BETWEEN 11 AND 14AND id NOT BETWEEN 18 AND 19AND `status`=1
in codeigniter
&…Read More
How to upload pdf more than 4M
Open file php.ini and change upload_max_filesize = 2M to upload_max_filesize = 64M and add code more below itmemory_limit = 96M
post_max_size = 64M
…Read More
How to create one variable from foreach in phpSOLUTION WITH AN EXAMPLE:
// get doc_typs $i=0; $j=''; foreach ($types->result() as $row) { $j.="WHEN d.doc_type = '".$row->type."' THEN ".$i++.' '; } $when=$j;// end get type…Read More