Practical solutions

PHP Howtos How-To Guides

Solve the problem. Keep building. Collection of PHP how-to articles

Find the answer you need

Browse practical solutions, grouped by the task you're working on.

__COUNT__ entries on this page

How to Check if a String Contains a Substring in PHPThis article introduces how to check if a string contains a substring in PHP. How to Add Elements to an Array in PHPThis article introduces how to add elements to an array in PHP. It includes the array_push() function and the Direct Assignment Method. How to Write Multi-Line Strings in PHPThis article introduces how to write multi-line strings in PHP. It includes an escape sequence and concatenation assignment operator. How to Reset Array in PHPThis article introduces how to reset an array in PHP. It includes unset() function and array_diff() function. How to Perform Array Delete by Value Not Key in PHPThis article introduces how to perform array delete by value not key in PHP. It includes array_search() function, unset() function and array_diff() function. How to Concatenate Strings in PHPThis article introduces how to d string concatenation in PHP. It includes the concatenation operator, concatenation assignment operator, and the sprintf() function. How to Initialize Empty Array in PHPThis article introduces how to initialize an empty array in PHP. It includes square brackets and array() function. How to Format Phone Numbers in PHPThis article introduces how to format phone numbers in PHP. It includes preg_match() function and sprintf() function. How to Convert String to Float in PHPThis article introduces how to convert string to float in PHP. It includes type casting, floatval() function, and number_format() function. How to Remove Duplicate Values From an Array in PHPThis article introduces how to remove duplicate values from an array in PHP. It includes array_unique() function. How to Convert XML to JSON in PHPThis article introduces how to convert xml to json in PHP. It includes simplexml_load_string() function and json_encode() function. How to Redirect in PHPThis tutorial demonstrates how to redirect a user from a page to a different page in PHP How to Generate Random String in PHPThis tutorial demonstrates randomly generation of string in PHP How to Remove Special Character in PHPThis tutorial shows the removal of special character from string in PHP How to Read if Checkbox Is Checked in PHPThis tutorial demonstrates how to read if a checkbox is checked in PHP How to Get User IP Address in PHPThis tutorial demonstrates how to get the user's IP address in PHP How to Show All Errors in PHPThis tutorial demonstrates how to display errors and warnings in PHP How to Count Rows in MySQL PHPThis tutorial demonstrates how to count the total number of rows of mysql table in PHP How to Add Line Break in PHPThis tutorial demonstrates how to add a line beak within echo in PHP How to Write Array to a File in PHPThis tutorial demonstrates how to write arrays to a file in PHP How to Send POST Request in PHPThis tutorial demonstrates how to send POST Request with PHP How to Refresh a Page in PHPThis tutorial demonstrates how to refresh a page periodically in PHP How to Prevent SQL Injection in PHPThis tutorial demonstrates how to prevent SQL injection in PHP How to Use Default in PHP Switch CaseThis tutorial introduces the working mechanism of default in switch case in PHP