Posts

Download Latest HD Movies

Download Latest Movies Here are the link that you can see to download or watch online movies Search the given word or just click on the given word for Download Latest HD Movies Search on google  rdxhd for download movies Search on google skymovieshd  for download movies Search on google hdmovies4u  for download movies Search on google filmyzilla  for download movies Search on google ofilmywap  for download movies Search on google filmywap  for download movies Search on google hdhub4u  for download movies Search on google hdmoviesfair  for download movies Search on google khatrimazaful  for download movies if you have any issue comment in the comment section. thanks for visiting

Experience about PHP, Laravel, Prestashop

Experience about PHP, Laravel, Prestashop PHP is a popular server-side programming language used to create dynamic websites and web applications. It is widely used for creating content management systems, e-commerce platforms, social networking sites, and more. PHP is known for its simplicity, flexibility, and scalability, and it is supported by most web hosting providers. Laravel is a free, open-source PHP web application framework used to build web applications. It provides a variety of features and tools to make web development faster and more efficient. Laravel is known for its elegant syntax, ease of use, and clear documentation, making it a popular choice for building web applications. PrestaShop is an open-source e-commerce platform written in PHP. It is designed to help businesses create online stores with ease. PrestaShop provides a range of features, including product catalog management, payment processing, and customer management. It also includes a range of mark

How to Insert Data in Database using PHP OOPS Classes and Objects

Image
Insert Data into database using classes and object. Create database and table into you localhost server ( phpmyadmin ) Add fields that you require to insert, i'm doing here users related information name, email, contact, gender, education, address. When you done with table we can work on next step. Create a form inside users.php file where we can get information from user to insert into database. Full Name : Email : Contact no. : Gender : Male   Female Education : Select 10th 12th Graduate Post Graduate Address :   Lets create database connection and class inside functions.php for insert operation and function for insert data into database using mysqli_query. define('DB_HOST','localhost'); define('DB_USER','root'); define('DB_PASS',''); define('DB_NAME','demo'); class dbcon { public $con; public function __construct() { $this->con = mysqli_connect(DB_HOST,DB_USER,DB_P

Step by Step Process For Wordpress Installation on Localhost using Xampp Server

Image
Step by Step Process For Wordpress Installation on Localhost using Xampp Server First download the fresh wordpress zip file by clicking here . and download xampp if you don't have according to your system configuration 32/64 bit by clicking here . After download go to xampp's htdocs folder and create folder with any name and extract your downloaded wordpress zip file there. Go to your favorite browser and run your localhost and go to phpMyAdmin and create new database by clicking on new link on left sidebar with any name and use that database name during installation of wordpress. And for full step follow the given video. If you have any question and error during installation comment me. I will help you to resolve it.

How To Create Your Own Custom Widgets Wordpress

How To Create Your Own Custom Widgets Wordpress Wordpress provide a functionality to create your own custom widgets for this we have function that initilize your widget widgets_init . By using this function you can initilize your custom widget and call them by using dynamic_sidebar('customsidebarwidget') . Let create our own widget function custom_sidebar_widget(){ register_sidebar(array( 'name' => __('Custom Sidebar Widget', 'customsidebarwidget'), 'id' => 'customsidebarwidget', 'description'=> __('Your description about your widget', 'customsidebarwidget'), )); } add_action( 'widgets_init', 'custom_sidebar_widget' ); custom_sidebar_widget it's name of function that you used with widgets_init in Hook i.e. add_action( 'widgets_init', 'custom_sidebar_widget' ) . and inside this function you can describe your widget detail inside re

How To Use DB Queries In Laravel

How To Use DB Queries In Laravel - Laravel is PHP Framework for Web Application. It is a Free -> Open Source PHP Framework. It's follow the Standard Coding way MVC (Models, Views, Controllers) Concept. Model -> It mainly interact with the Database. Database Queries like Insert,Update,Select,Delete etc. Controller -> It's responsible for Users Action and Buisness Logic of the application. View -> It's most interacting part of the web application for Users. Now DB Queries - How to use in Laravel code 1.Check the columns in the database table for particular table query is -- $columns = DB::select( DB::raw('SHOW COLUMNS FROM TABLE_NAME')); 2. If you want to modify your database table DB::statement('ALTER TABLE TABLE_NAME MODIFY COLUMN_NAME DATATYPE NOT NULL'); DB::statement('ALTER TABLE User MODIFY user_id INT(20) NOT NULL'); 3. Get data for particular table form database DB::select('SELECT * FROM TABLE_NAME'

How To Show Emoji Stored In Database

How To Show Emoji Stored In Database - Emoji is Stored in Database Instead of showing ❤ Love 😋 Emoji's they are showing ????? Love ????? . So it's basically Database Charset and Collection Problem. So that's why we unable to get the Emojis on Front End. So we can use to Mysql Command for this. ALTER TABLE TABLENAME CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE TABLENAME MODIFY COULMNNAME TEXT CHARSET utf8mb4; In First Command we can Change the Charset and Collate for table and after that Second Command is use to modify the Column Where Emojis are stored. In Laravel we can use these commands. Don't forget to use Laravel DB class for Database Queries. DB::statement("ALTER TABLE TABLENAME CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci"); DB::statement("ALTER TABLE TABLENAME MODIFY COULMNNAME TEXT CHARSET utf8mb4;"); or in PHP We can use mysqli_set_charset($connect, 'utf8mb4') $connect=mysql