I have now go to the part where i get the return "Congrats Your Data was saved",
HOWEVER when I go an look into the base nothing at all has changed. I did once get the error "Your data was not passed" and I sorted that so there must be data being passed and the right data,
The .Php line Now reads
-------------------------------------------------------------------------------------------------
$sql = mysql_query("UPDATE MyTable SET hits = hits WHERE ID = ID ");
-------------------------------------------------------------------------------------------------
And the C2 Ajax Post box reads
---------------------------------------------------------------------------------------------
"http://mywebsite/update.php?ID=" & ID.Text & "&hits=" & hits.Text
---------------------------------------------------------------------------------------------
I decided to add the one to the hits on a different button , so I am thinking dose the Ajax take the number from the text box when asked or from the array that it used to fill the text box in the first place , in which case I would need to change where the hit is recorded and not any of the lines above,