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
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
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
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