afgprogrammer-logo
Blog PHP Flutter Presentations
  • Home /
  • PHP
PHP htmlentities() Function

PHP htmlentities() Function

The htmlentities() function converts characters to HTML entities. ...

PHP implode() Function

PHP implode() Function

The implode() function returns a string from the elements of an array. ...

PHP explode() Function

PHP explode() Function

The explode() function breaks a string into an array. ...

PHP htmlspecialchars_decode() Function

PHP htmlspecialchars_decode() Function

The htmlspecialchars() function converts some predefined characters to HTML entities. ...

PHP htmlspecialchars() Function

PHP htmlspecialchars() Function

The htmlspecialchars() function converts some predefined characters to HTML entities. ...

PHP ucwords() Function

PHP ucwords() Function

The ucwords() function converts the first character of each word in a string to uppercase. ...

PHP strtoupper() Function

PHP strtoupper() Function

The strtoupper() function converts a string to uppercase. ...

PHP strtolower() Function

PHP strtolower() Function

The strtolower() function converts a string to lowercase. ...

PHP addcslashes() Function

PHP addcslashes() Function

The addcslashes() function returns a string with backslashes in front of the specified characters. ...

Select Data with PDO

Select Data with PDO

The SELECT statement is used to select data from one or more tables. A prepared statement is a feature used to execute the same (or similar) SQL state ...

Prepared Statements and Bound Parameters

Prepared Statements and Bound Parameters

A prepared statement is a feature used to execute the same (or similar) SQL statements repeatedly with high efficiency. ...

Get Last Inserted ID in PDO

Get Last Inserted ID in PDO

PHP will work with virtually all database software, including Oracle and Sybase but most commonly used is freely available MySQL database. ...

Insert Data with PDO

Insert Data with PDO

PHP will work with virtually all database software, including Oracle and Sybase but most commonly used is freely available MySQL database. ...

Create Database with PDO

Create Database with PDO

PHP will work with virtually all database software, including Oracle and Sybase but most commonly used is freely available MySQL database. ...

PDO Database Connection

PDO Database Connection

PHP will work with virtually all database software, including Oracle and Sybase but most commonly used is freely available MySQL database. ...

Foreach in PHP

Foreach in PHP

The foreach statement is used to loop through arrays. For each pass the value of the current array element is assigned to $value and the array pointer ...

For Loop in PHP

For Loop in PHP

The for statement is used when you know how many times you want to execute a statement or a block of statements. ...

Associative Arrays in PHP

Associative Arrays in PHP

The associative arrays are very similar to numeric arrays in term of functionality but they are different in terms of their index. ...

Date and Time in PHP

Date and Time in PHP

You'll often want to work with dates and times when developing websites. For example, you might need to show the last modified date on a post or menti ...

Regular Expressions in PHP

Regular Expressions in PHP

A regular expression is a sequence of characters that forms a search pattern. When you search for data in a text, you can use this search pattern to d ...

Functions in PHP

Functions in PHP

PHP functions are similar to other programming languages. A function is a piece of code which takes one more input in the form of parameter and does s ...

Arrays in PHP

Arrays in PHP

An array is a data structure that stores one or more similar type of values in a single value. For example if you want to store 100 numbers then inste ...

Switch Case in PHP

Switch Case in PHP

The “switch” performs in various cases i.e., it has various cases to which it matches the condition and appropriately executes a particular case block ...

Conditional Statements In PHP

Conditional Statements In PHP

Very often when you write code, you want to perform different actions for different conditions. You can use conditional statements in your code to do ...

Number Functions in PHP

Number Functions in PHP

The most basic type of number in PHP is the integer. As you might already know, integers are numbers without any decimal part. ...

String Functions in PHP

String Functions in PHP

A string is series of characters, where a character is the same as a byte. This means that PHP only supports a 256-character set, and hence does not o ...

Declaring PHP Variables

Declaring PHP Variables

Variables are used to store data, like string of text, numbers, etc. Variable values can change over the course of a script. ...

Comments in PHP

Comments in PHP

A comment in PHP code is a line that is not executed as a part of the program. Its only purpose is to be read by someone who is looking at the code. ...

PHP Case Sensitivity

PHP Case Sensitivity

In PHP, keywords (e.g. if, else, while, echo, etc.), classes, functions, and user-defined functions are not case-sensitive. ...

The PHP echo Statement

The PHP echo Statement

The echo statement can be used with or without parentheses: echo or echo(). ...

Github,  Youtube,  LinkedIn (CV),  Instagram

The website is build on NuxtJS. Thanks for visiting ❤️ & have a nice day