junio 2020 ~ Money Guardian

.

.

Top 16 Free Websites to Learn Hacking

By on 20:58
Hack Forums: Emphasis on white hat, with categories for hacking, coding and computer security. SecurityFocus: Provides security information to all members of the security community, from end users,...

DEFINATION OF HACKING

By on 22:41
DEFINATION OF HACKINGHacking is an attempt to exploit a  computer system vulnerabilities or a private network inside a computer to gain unauthorized acess.Hacking is identifying and exploiting weakness in...

PC No Reconoce Memoria USB "Software Gratis" (Solución)

By on 13:38
En esta ocasión queremos hablar de un tema que sucede con frecuencia en nuestro entorno si trabajamos bastante con memorias USB. Y es de notar que cada vez que insertamos y...

Support For XXE Attacks In SAML In Our Burp Suite Extension

By on 5:12
In this post we present the new version of the Burp Suite extension EsPReSSO - Extension for Processing and Recognition of Single Sign-On Protocols. A DTD attacker was implemented...

SubOver - A Powerful Subdomain Takeover Tool

By on 19:01
Subover is a Hostile Subdomain Takeover tool designed in Python. From start, it has been aimed with speed and efficiency in mind. Till date, SubOver detects 36 services which...

How To Insert Data Into Database | Tutorial 3

By on 10:47

Welcome to my another tutorial of PHP and MYSQL. In the previous tutorial I've briefly discussed How to make a PHP file and How to save the PHP file in the root directory of the server. How to run PHP script over the Web Browser etc.

Now in this tutorial I've discussed about inserting data into database by getting the values from user with the help of HTML form. One thing should be remembered that getting a values from users by HTML form is the only way to get values from users in PHP.

How To Insert Data into Database

Step 1:

Open your text editor and create HTML form. 

Step 2:

Make a database connection in PHP.

Step 3:

Write an INSERT query for the sake of insertion data into database like INSERT INTO table_Name(table_Attribute1, table_Attribute2....) VALUES('1', 'Alex'...); etc. Now watch the video to make a better understanding the concept of insertion.