![]() |
admin 11/5/2012 |
Instead of $email="$mailstring";
$email=$mailstring; |
D
|
DAndras author 11/5/2012 |
Instead of $email="$mailstring";
$email=$mailstring;
|
![]() |
admin 11/5/2012 |
As a general advice - you need to add a few echo statements to print variables on the screen. This way you can what parts of code are executed and what are the values of variables like $mailstring. |
D
|
DAndras author 11/6/2012 |
As a general advice - you need to add a few echo statements to print variables on the screen. This way you can what parts of code are executed and what are the values of variables like $mailstring.
|
![]() |
admin 11/6/2012 |
Where you print the current email address on the page ($row['email']) use the following to accumulate a list of email addresses in the variable: $email.=$row['email'].",";
|
D
|
DAndras author 11/6/2012 |
Where you print the current email address on the page ($row['email']) use the following to accumulate a list of email addresses in the variable: $email.=$row['email'].",";
|