How to reset password email subject in laravel
You can change your password reset email subject, but it will need some extra work. First, you need to create
Read moreYou can change your password reset email subject, but it will need some extra work. First, you need to create
Read moreCreate time slots by passing start and end time with php. method accepts three parameters startTime, endTime and duration. slots
Read moreCreate .htacess file in root directory of project. mkdir .htaccess open the .htaccess file and add below line Options -Indexes
Read moreOpen terminal and run the commands to fix it sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf sudo ln -s /usr/share/phpmyadmin /var/www/html/phpmyadmin now
Read morePHP used two method for Set and Get the timezone. date_default_timezone_set() and date_default_timezone_get(). While you using date_default_timezone_set() method , its accepting one
Read moreIf you getting issue “Only variables should be passed by reference” it comes because you are using direct value from
Read moreBy default file upload size id 2MB in php.ini file but you can increase it in php.ini file or .htaccess
Read moreYou can use one of these get_site_url(); or site_url();
Read moreIt’s very easy to get list of Timezone in php. Just calling the one line of code and it’s return
Read moreYou can remove file extension in PHP using regex $filename = ‘doxument_file.ppt’; $withoutExt = preg_replace(‘/\\.[^.\\s]{3,4}$/’, ”, $filename); echo $withoutExt; //
Read more