Re: [PHP-WIN] New to PHP Need Help

2002-04-04 Thread Piotr Pluciennik
Hi, mysql_fetch_row($result) function output is an array - so it's not strange that your script produces such output. Read the manual for detailed explanation of this function and how to handle the result set. You should also know name of the field you want to retrieve from db - in SQL query you

Re: [PHP-WIN] New to PHP Need Help

2002-04-04 Thread Mike Flynn
mysql_fetch_row() returns an associative array containing all columns retrieved from the database. You can't echo an array directly. In the associative array, the keys are the column names from the table, the values are the values you retrieved in that row. So you could do this to see what y

Re: [PHP-WIN] New To PHP need help with mail

2002-01-20 Thread Rubén Gutiérrez
On Sun, 20 Jan 2002 15:40:23 - "Ross Fleming" <[EMAIL PROTECTED]> wrote: > Asuuming you have PHP setup already, edit your PHP.ini file. Change your > mail settings in it to: > [mail function] > ; For Win32 only. > SMTP= mail.mysmtpserver.com ; for Win32 only > > ; For Win32 only. > sendmai

RE: [PHP-WIN] New To PHP need help with mail

2002-01-20 Thread Ross Fleming
Asuuming you have PHP setup already, edit your PHP.ini file. Change your mail settings in it to: [mail function] ; For Win32 only. SMTP= mail.mysmtpserver.com ; for Win32 only ; For Win32 only. sendmail_from= [EMAIL PROTECTED] ; for Win32 only and save it. Then, in the formaction.php page, use