English, asked by adhikesavan0230, 6 months ago

10. Write a PHP program to insert a record.​

Answers

Answered by seshathrijegasint
0

Answer:

Data can be entered into MySQL tables by executing SQL INSERT statement through PHP function mysql_query. Below a simple example to insert a record into employee table.

Answered by shubham1494
1

Answer:

Try out following example to insert record into employee table. <? php $dbhost = 'localhost:3036'; $dbuser = 'root'; $dbpass = 'rootpassword'; $conn = mysql_connect($dbhost, $dbuser, $dbpass); if(! $conn ) { die('Could not connect: ' .

Explanation:

pls mark me as brainlist pls

and follow me to get follow back

Similar questions