MySql_connect()function को समझाइये।
Answers
MySql_connect() – ये फंक्शन Mysql database से connect करने के लिए प्रयोग किया जाता है। Database के साथ काम करने के लिए सबसे पहले इसी function को call किया जाता है। इस method में तीन arguments पास किये जाते हैं। पहला argument local host का port no. होता है। दूसरा argument database का user name होता है और तीसरा argument database का password होता है। इस function की value एक variable में store की जाती है। ये function database का pointer return करता है।
उदाहरण
<?php
$conn=MySql_connect(“localhost”,”username”,”password”);
?>
Answer:
ia ur answer mate...!!
PHP mysqli_connect function
The PHP mysql connect function is used to connect to a MySQL database server. ... “$db_handle” is the database connection resource variable. “mysqli_connect(…)” is the function for php database connection. “$server_name” is the name or IP address of the server hosting MySQL server.
Explanation:
plzz mark it as brainlieast if it really helps