This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
php -v | |
php -i | grep opcache | |
https://www.alibabacloud.com/en?_p_lc=1 | |
https://linuxcommand.org/lc3_lts0090.php | |
https://discord.com/invite/k2CVXuX3 | |
username: ec2user | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
col-12 | |
col-sm-12 | |
col-md-12 | |
col-lg-12 | |
col-xl-12 | |
col-xxl-12 | |
@media (min-width: 576px) { ... } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
App\Providers\AppServiceProvider::class, | |
Yajra\Datatables\DatatablesServiceProvider::class, | |
//Darryldecode\Cart\CartServiceProvider::class, | |
//Barryvdh\Debugbar\ServiceProvider::class, | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Template Name: Archives | |
*/ | |
get_header(); // load header.php file | |
$year = get_query_var('year'); | |
$monthnum = get_query_var('monthnum'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function pdf_count(){ | |
$query_pdf_args = array( | |
'post_type' => 'attachment', | |
'post_mime_type' =>'application/pdf', | |
'post_status' => 'inherit', | |
'posts_per_page' => -1, | |
); | |
$query_pdf = new WP_Query( $query_pdf_args ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function bn_number($str) | |
{ | |
$en = array(1,2,3,4,5,6,7,8,9,0); | |
$bn = array('১','২','৩','৪','৫','৬','৭','৮','৯','০'); | |
$str = str_replace($en, $bn, $str); | |
return $str; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://business.facebook.com/ | |
rabiulraj90@gmail.com | |
https://developers.facebook.com/ | |
https://www.twilio.com/try-twilio | |
mhrabiul2009@gmail.com | |
GHZhrDh#79v^iD)6 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.jqueryscript.net/blog/best-multiple-select.html | |
$('.modal').on('click', '#select-rabiul', function () { | |
$('#customer_id').append(new Option("Rabiul", 1, true, true)).trigger('change'); | |
$('#customer_id').append(new Option(response.data.customer_name, response.data.id, true, true)).trigger('change'); | |
}); | |
$('#customerName').trigger('change.select2'); | |
NewerOlder