Programming Tutorials

Latest

 thumbnail

How to Order By in Laravel

January 27, 2021

To order a query in descending or ascending order in Laravel use the orderBy() method followed by the get() method. The...

 thumbnail

jQuery: How to Toggle Class Names

January 26, 2021

To toggle one or more classes with jQuery, use the toggleClass() method. Let's create a button and a jQuery click functi...

 thumbnail

Sublime Text Keyboard Shortcut to Comment Out Lines

January 25, 2021

It is possible to quickly comment-out large blocks of code in Sublime Text using keyboard shortcuts, which we will learn...

 thumbnail

How to Split a String into Array by Delimeter in PHP

January 25, 2021

To split a string into an array by a specific delimiter in PHP, use the explode() function. It will return an array of s...

 thumbnail

How to Find if a String Contains a Word in PHP

January 25, 2021

The strpos() function finds the first occurrence of a string inside another string in PHP. It is a case-sensitive functi...