When I try and update my table instead of incrementing over the array of urls, what is printed to the table is just the last entry in the url array.
When I echo the $url I can tell it loops through the array properly. When I echo $currentId is increments properly. Why doesn't the query enter each $url on a row in my table. What is happening here that I don't understand?
$currentId = 1;
foreach($pages as $url)
{
$query = "UPDATE pageurls SET url='$url' WHERE id='currentId'";
mysql_query($query);
echo($url.'<br/>');
$currentId++;
}
