Re: [PHP] looping through a $_POST variable
- From: richardkurth@xxxxxxxxxxxxxx (Richard Kurth)
- Date: Sun, 30 Dec 2007 16:14:47 -0800
I am trying to get one email at a time and run it through the loop and process it but if I have more than one email in the text area it gives me nothing and does not run
What kind of problems are you having in extracting the data?.
On Dec 30, 2007, at 4:29 PM, Richard Kurth wrote:
I am trying to loop through a $_POST variable. It comes from a text area and it will have data like many email address or just one listed with a space or on a new line. I can't seam to get the data to extract properly. I have tried this below
$array = explode(' ', $_POST['emails']);
foreach ($array as $value) {
$sql = "SELECT id FROM contacts where emailaddress = '$value' AND members_id = '$memberid'";
$sql_result=safe_query($sql);
while ($row=mysql_fetch_array($sql_result)){
$id = $row["id"];
$sql1="UPDATE contacts SET emailstatus ='Unsubscribed' WHERE id = '$id'";
safe_query($sql1);
}}
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
- References:
- looping through a $_POST variable
- From: Richard Kurth
- looping through a $_POST variable
- Prev by Date: looping through a $_POST variable
- Next by Date: Re: [PHP] looping through a $_POST variable
- Previous by thread: looping through a $_POST variable
- Next by thread: Re: [PHP] looping through a $_POST variable
- Index(es):
Relevant Pages
|