hello guys im a WebDevolper and to day im going to show you guys somes php on how to connect to a database hope you like this tour.
ok let get started first we start with the <?php tage and we end it with ;?> to no the php script is done and close[b]
[b]first we put the tage then mysql_connect with host, username,password <?php
//the HOST(tell what server it connecting too)USERNAME(is the username of the database Example: u88678_login)PASSWORD(is the password to beable to connected) mysql_connect("host","username","password" or die(mysql_error());
//the or die mysql_error show only if there a error with the connection // now we need to select a database to conntect to;
mysql_select_db("database name" or die(mysql_error());
//last we end the conntection with ?> ?>
ok guys that how you conntect to a database here the
full script
<?php
mysq_conntect("Host","username","password" or die(mysq_error());
echo"You are connted maleck";
mysq_select_db("" or die (mysql_error());
echo"you are connted cool maleck";
?>
there you go guys
if you have any promble contact me
next i make tour of mysq_query updated