Except that if you read the documentation, every single argument to
mysql_connect() is optional. If the connection were being
successfully established, she would have authentication failures, not
socket failures.
--Kyle Sluder
On Nov 25, 2007 6:17 PM, webmaster <email@hidden> wrote:
>
> On Nov 25, 2007, at 12:00:26, Livio Isaia wrote:
>
> > In fact I have a php file which calls "$connection = mysql_connect
> > ()". That's all. It comes from a sample found in the "mySQL
> > functions" section of a php tutorial. Isn't it right (or complete)?
> > I'm really new to mysql, sorry.
>
> What ???
>
> I take it you didn't read the info on the function, copy and paste
> this in your php file. (don't forget to edit the username and password)
> _________________________________________
>
> // Define the information to access the mysql server
> $mysql_access = array(
> 'host' => "localhost", // can be in form of host:port.
> 'socket' => ":/var/mysql/mysql.sock", // path to mysql socket
> 'username' => "mysql_username", // username for mysql access.
> 'password' => "mysql_password", // password for mysql access.
> 'connection' => "socket", // connection type to use. (use socket
> for local)
> ); // DO NOT CHANGE THIS!!!
>
>
> // Establish a connection to the server
> $connection = mysql_connect($mysql_access[$mysql_access
> ['connection']],$mysql_access['username'] ,$mysql_access['password']);
> _________________________________________
>
> Now that you have a connection what do you want to do with it?
>
> >
> > Thank you.
> >
> > Regards,
> > livio.
> > ____
>
> -- Dale
>
>
>
> _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Macos-x-server mailing list (email@hidden)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/macos-x-server/kyle.sluder%email@hidden
>
> This email sent to email@hidden
>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Macos-x-server mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/macos-x-server/email@hidden
This email sent to email@hidden