Faqts

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

1 of 2 people (50%) answered Yes
Recently 1 of 2 people (50%) answered Yes

Entry

how i can connect mysql database with php

Jan 8th, 2006 00:28
Stratan Ionut, Madhulika Shiwale,


<?php
 // connect to the server
   mysql_connect( 'server(if on home 
pc "localhost")', 'username', 'password' )
      or die( "Error! Could not connect to database: " . mysql_error
() );
   // select the database
   mysql_select_db( 'database' )
      or die( "Error! Could not select the database: " . mysql_error
() );
?>