Category: Php
-
How to use ternary operator in php?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to use ternary operator in php? I have started learning php from four year ago. PHP is the best web language. There are many cms and frameworks in PHP and WordPress is the best example. facebook also used PHPin it. In PHP, there is ternary operator and this is very good …
Written by

-
How to use carbon in laravel for date time?
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to use carbon in laravel for date time? I am doing with laravel first time in my website. Laravel is one of the top php mvc framework. Here is the way to use carbon in laravel: In blade template you can…
Written by

-
Send Mail After Successful Registration In PHP
Hello to all, welcome to therichpost.com. In this post, I will tell you how to Send Mail After Successful Registration In PHP? This is basic functionality and In this form you just add form value and press the button and Successful Registration email will receive on your email id. Here is the working code and…
Written by

-
PDO select query with case statement
Hello to all, welcome to therichpost.com. In this post, I am showing PDO select query with case statement. First time I am showing mysql pdo case statements. Here is the working code for PDO select query with case statement: <?php$servername = “localhost”;$username = “root”;$password = “root”; try { $conn = new PDO(“mysql:host=$servername;dbname=user”, $username, $password); //…
Written by

-
What is the use of Prefix in Laravel Routes?
Hello to all, welcome to therichpost.com. In this post, I will tell you, What is the use of Prefix in Laravel Routes? I am doing with laravel first time in my website. Laravel is one of the top php mvc framework. I personally like laravel routes feature very much. By my understanding in basic way,…
Written by

-
Send Forgot Password Email WordPress
Hello, welcome to therichpost.com. In this post, I will tell you How to Send Forgot Password Email WordPress? WordPress is the best cms. WordPress hooks(add_action, add_filter) give us the power to edit or change the code without interruption into the files and this is the best thing about wordpress. In this post, I have made…
Written by

-
Use StdClass Object In PDO
Hello to all, welcome to therichpost.com. In this post, I will tell you, How to Use StdClass Object In PDO? PDO means PHP Data Object. PDO is more secure and it is opps based. In this post, I will use php StdClass in pdo query with creating custom StdClass properties. stdClass is PHP feature. With…
Written by

-
How to remove index.php from url?
Hello to all, welcome to therichpost.com. In this post, I will tell you How to remove index.php from url? and you need to add this code into your .htaccess file. Here is the working code and you need to add this .htaccess file: RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?/$1 [L]…
Written by

-
How to display mysql data in table format using pdo?
Hello to all, welcome to therichpost.com. In this post, I am showing mysql data in table format using pdo. Table format will be same like mysql. This code is very interesting and will show all the data with column names and data structure as same as mysql table structure. Here is the working code for…
Written by

-
Laravel Collective Package Form Layouts Examples Code
Hello to all, welcome to therichpost.com. In this post, I will tell you, Laravel Collective Package Form Layouts Examples Code. I am doing with laravel first time in my website. Laravel is one of the top php mvc framework. 1. First you need to write below code into your composer: composer require “laravelcollective/html”:”^5.3.0″ 2. Second…
Written by
