by admin4blog | Mar 14, 2024 | websolution
1. Upload all files folder in domain or sub-domain2. Now point public folder3. Now see your website in URLAlso very easy way will migrate from old version of Laravel project to updated Laravel new version
by admin4blog | Feb 29, 2024 | websolution
First run npm i react-router-dom create pages folder in src folder here create files in pages like add.jsx, update.jsx, delete,jsx in every file defined as follows: example of add paged import React from ‘react’ const add = () => { return...
by admin4blog | Feb 28, 2024 | websolution
Process to make node server: run code npm init – y run code npm i express mysql nodemon After install no-2 then create page index.js Put code in index.jsimport express from “express”import express from “express”;import mysql from...
by admin4blog | Feb 11, 2024 | websolution
Step 1) Log in to AWS Console First, you need to log in the AWS Console. If you don’t have an AWS account, you need to register first. Then you are able to use AWS services. Step 2) Create an Instance After logging in to AWS Console, you will see the list of AWS...
by admin4blog | Nov 26, 2023 | websolution
function multilevel_cat($parent_id){ $retVal = array($parent_id); $sql = “SELECT cat_id,parent_id FROM `cat` WHERE parent_id='”.$parent_id.”‘”; $res= mysqli_query($this->conn, $sql); while($row = mysqli_fetch_assoc($res)) { $retVal =...