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 …

    Php Preg_Match Pattern for Week Days Name
  • 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…

    Laravel 7.2 routing with route group auth guard check with prefix
  • 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…

    Php Preg_Match Pattern for Week Days Name
  • 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); //…

    mysql-select-query
  • 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,…

    Laravel 7.2 routing with route group auth guard check with prefix
  • 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…

    How to add custom meta title and meta description in Wordpress?
  • 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…

    Php Preg_Match Pattern for Week Days Name
  • 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]…

  • 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…

    mysql-select-query
  • 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…

    Laravel 7.2 routing with route group auth guard check with prefix