PHP Tutorials

Pre- and Post- Increment Operator ( ++ ) …

Pre-increment ( ++$y; ) : Increments $y by one , then returns $y .
Post-increment ( $y++; ) : Returns $y…


$_SERVER ( request uri - query string ) …

How to return and display values ( query string , request uri , php self , script name , request…


Null Coalescing Operator ( ?? ) …

Null Coalescing Operator ( ?? ) is a useful shorthand operator for assigning default values ​​to variables that may be…


Network data on the hosting server …

How to return and display values ( server address , server port , remote address , remote port , server…


Short Ternary Operator ( ?: ) …

Short ternary operator ( ?: ) is a conditional operator and a shorthand for an if else block ( making…


How to create an Excel Spreadsheet …

Create a web page as an Excel spreadsheet using PHP ( backend ) .


PERL String Increment Feature …

Increment a non- numeric string in PHP .
Increasing the letter until you reach the next letter .Example : $y…


Ternary Operator ( ? : ) …

Ternary Operator ( ? : ) is a shorthand for an if else block ( making the code more concise…


How to Create a Simple WordPress Plugin

Creating a Simple WordPress Plugin to display "Hello World!"
on the frontend and has an admin page.

^