Posts

Showing posts from September, 2023

npm ERR! code ENOENT npm ERR! syscall lstat npm ERR! path C:\Users\N 526\AppData\Roaming\npm npm ERR! errno -4058 npm ERR! enoent ENOENT: no such file or directory, lstat 'C:\Users\N 526\AppData\Roaming\npm' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! eno

use following command to solve this error  npm init react-app myreactapp

JSX in React | Why use JSX in React

 JSX (JavaScript XML) JSX helps us to write HTML Elements in JavaScript and Place into DOM without createElemant() or appendChild() methods. const newheader=<h1>My First JSX </h1>; const root=ReactDom.createRoot(document.getElementById('root')); root.render(newheader);

Python For Loop

student = ["Emon", "Minhaz", "Jamal"] for x in student:    print(x)

How to Pass multiple Variable using AJAX to PHP

Image
 File 1: All variable store into array. pass that array to php file File2:               if($_REQUEST['q'])    {   $x=$_REQUEST['q'];   $y=explode(',',$x);     } // content array receive into x as an string. Now convert x string into y array