Jump to content

[SOLVED] arrays


verN

Recommended Posts

I have the following problem when each field gets updated a seperate message appears two, three times depnding on how many chnages were made to the form. Basically i have a form when the details can be updated by the user.

 

for($i = 0; $i < sizeof($e); $i++)
	{
		$updateM_query = "UPDATE mailinglists SET emailAddress='$e[$i]' WHERE seminarID='$id' AND emailAddress='$old[$i]'";

		$updateM_result=mysql_query($updateM_query,$dbc) or die (mysql_error());
		//echo $updateM_query;			 
		// email addresss is inserted



		if (mysql_affected_rows() >= 1) {
				// Print a message.
				echo '<p class="error">The changes have been updated.</p><br />';	
		} 
	}

thanks in advnce

Link to comment
https://forums.phpfreaks.com/topic/42762-solved-arrays/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.