Posted by Bandul on 04/26/06 02:24
Hi everyone
I am trying to send a e-mail using the mail() function.
Now i try to send more than one data from mysql database so i must use
example
$results=mysql_num_rows($result_query)
for(i=0; $i < $results; i++)
{
$row=mysql_fetch_array($result_query);
echo $row['name'];
echo " ";
echo $row['blabla'];
}
if i use mail() function one parametar must be variable example $text
I cant put more than one parameter in mail function or if i use $text
variable in string i cant put for()..etc
example
$text ="This is costumers names".
for(i=0; $i < $results; i++)
{
$row=mysql_fetch_array($result_query);
echo $row['name'];
echo " ";
echo $row['blabla'];
}." ..etc";
This is no working solution
mail(some@some.so, help, $text);
I am new in php programing and i have no idea how to do this.
Thanks Ivan
Navigation:
[Reply to this message]
|