Array in php

In PHP, there are three types of arrays: Indexed arrays - Arrays with a numeric index Associative arrays - Arrays with named keys Multidimensional arrays - Arrays containing one or more arrays <?php…

0 Comments

Loop in php

Like any other language, loop in PHP is used to execute a statement or a block of statements, multiple times until and unless a specific condition is met. This helps…

0 Comments

PHP Constant

Constants are either identifiers or simple names that can be assigned any fixed values. They are similar to a variable except that they can never be changed. They remain constant…

0 Comments

PHP variable and its scope

Variable Scopes: The scope of a variable is defined as its extent in the program within which it can be accessed, i.e. the scope of a variable is the portion of…

0 Comments

wordpress custom login/signup page

Ultimate Dashboard – Custom WordPress Dashboard Plugin Install & Activate. Hover on Ultimate Dashboard option and choose login form or other according to need. And customize the form.    …

0 Comments

Import css in react js

const Header = () => { return ( <> <h1 style={{backgroundColor: "lightblue"}}>Hello Style!</h1> <p>Add a little style!</p> </> ); } const Header = () => { const myStyle = {…

0 Comments