all groups > flash data integration > july 2006 >
You're in the

flash data integration

group:

How to connect to database using php


How to connect to database using php jlw12689
7/14/2006 3:10:18 PM
flash data integration:
Re: How to connect to database using php Vertine
7/14/2006 3:46:17 PM
hi jlw12689 -

i have a pretty standard code i use to do just this. It goes SOMETHING like

<?php
$host="localhost";
$db="databaseName";
$user="username";
$pass="secretpassword";

$connect=mysql_connect($host,$user,$pass) or die(mysql_error());
mysql_select_db($db,$connect);
?>
Re: How to connect to database using php jlw12689
7/16/2006 11:26:36 AM
Re: How to connect to database using php The Pickler
7/18/2006 12:00:00 AM
Re: How to connect to database using php jlw12689
7/20/2006 4:39:27 PM
Re: How to connect to database using php micahkoga
7/21/2006 12:00:00 AM
AddThis Social Bookmark Button