$hitUpdateQuery = "UPDATE Table1 SET NumberTimesHit = '{$hitRow['NumberTimesHit']}' WHERE ClientIP = '{$hitRow['ClientIP']}'";
I want to update another value in the row, how can I do that... Please help! I think I can do it on this line, I am just not sure!
$hitUpdateQuery = "UPDATE Table1 SET NumberTimesHit = '{$hitRow['NumberTimesHit']}' AND Value2 = '{$hitRow['Value2']}' WHERE ClientIP = '{$hitRow['ClientIP']}'";
That is what I think I should do, please help!
micah