How to replace string from a table column in MySQL?
Update Part of String in Table Column In a table column which have string value, you might need to update any part of string. Like I had to change the part of URL in...
Update Part of String in Table Column In a table column which have string value, you might need to update any part of string. Like I had to change the part of URL in...
Laravel 5 Migrations Migrations are like version control for your database, which allow us to modify database schema and stay up to date on the current schema state. Migrations are typically paired with the...
Use checkmark or tick instead of bullet I had a list where I wanted to sow tick/checkmark (✓) instead of bullets in the unordered list. For this, I used following code. But text is...
Paginate Query Builder Results in Laravel Most of times while building admin panels; we need to show listings with pagination. We can do this by using jQuery plugins like DataTables but we can also...
Prevent disabled or inactive users from login I was doing a Laravel 5.4 project in which I needed to prevent inactive or disabled users to log in. I created a field named status along...
Create WordPress widget for latest posts WordPress providing sidebar widget for latest post which is just for post type posts not for any custom post types. So to create widget that fetches posts from...
Set Foreign Key Checks While running migrations or seeding or importing data by running scripts, we might need to set foreign key checks to zero in database during these processes in laravel 5 programming....
Get Value from PHPExcel_RichText Object We can read and create excel, csv files from phpexcel library. While reading excel file with phpexcel, you might get richtext object like following. We can’t simply get PHPExcel_RichText...
Apache PDFBox is open source Java library for working with PDF files. This library allows processing on PDF files in many ways. I am using this for converting PDF files to images. I used...
Web design is a very creative and important job that every web designer has. Companies need websites and websites require a great website design. A great website design is classified as ‘great’ by being...
More