Re: My script that uses mysql.

2001-03-23 Thread Thalis A. Kalfigopoulos
On Fri, 23 Mar 2001, Johan Vikerskog (ECS) wrote: > I am not sure if i should post it here but please do help my if you can. > The script is as follows: > > > > > > > mysql_connect (localhost, username, password

RE: My script that uses mysql.

2001-03-23 Thread Jon Haworth
> I am not sure if i should post it here but please do help my if you can. Probably one of the PHP lists would be a better place ;-) Check out http://www.php.net/support.php for a full run-down. > The script is as follows: > I basically have two questions. > If i want to make a "mailto" funct

RE: My script that uses mysql.

2001-03-23 Thread Cal Evans
1: print ''$row["email_player"].''; 2: $row is the name of the array you have defined to hold the current row form the resultset your created with the SELECT statement. each time you do $row = mysql_fetch_array($result) it takes the next row from $result and stored it in the array named $row. Ca