menu manager using php
menu manager using php with mysql demo link: menumanager 1.database name is: web 2.table name is: menu 3.columns are: NAM…
letskillsup is the platform to get learn with several technologies like HTML, css, JS, PHP, python, laravel, react, etc. to get skilled in your career.
be aware with the tech to drive the life of IT
menu manager using php with mysql demo link: menumanager 1.database name is: web 2.table name is: menu 3.columns are: NAM…
when there is a need to handle file data through a server, file handling is used. best example is WordPress, which uses it to handle theme files. the…
password encryption in PHP there are generally two functions used to encrypt passwords in PHP : 1.md5 2.sha1 md5 md5 is a function that is using Mes…
when we talk about any programming, their several ways to program like procedural, object-oriented programming, etc. What is OOP in PHP? OOP stands…
$_SESSION in php a session can be understood as we work somewhere, performing some tasks, giving inputs, and changing data, and then after the work, …
list of basic react native components View The most fundamental component for building a UI. Text A component used for displaying text. Image A comp…
basic level login and logout when we talk about login and logout in php, there are some checks must be done for further tasks: check the person who …
$_server in php When we talk about the data taken from a contact form, get the post, and request superglobals can be used. But when we need informati…
what are the superglobals? superglobals are the specially predefined global array variables. These are mainly used to get information from one page…
requirements: a database to store the image. here we used users named database a folder where we upload the image.we used userdata named table. <…
what is an array An array is a variable that can be used to hold multiple values at a time. There are two ways to create arrays: by using array funct…
String A string is a sequence of characters. There are some functions those are as follows: str_word_count() function counts the number of words …
WHAT IS A LOOP loop is used to repeat the specific block of code again and again ,until the given condition is true. types of loops: for loop: syntax…
if statement PHP if statement allows condition based execution of the code. It is used to be executed if condition is true. If statement is used to e…
create a connection with database: new mysqli("localhost","root","","maxx"); referer of connection: $conn=new…