Alright guys, bear with me, im a noob when it come to PHP.
When a user clicks I am currently redirecting users the following way:
echo '<li class="edit"><a href=updateInfoForm.html?id='.$siteInfoId.'><img src ="images/edit.png" class="editImg" height="23" width="23"/></a></li>';
The problem is I would rather not have this data in the URL, I know how to use POST and GET in relation to HTML forms and I more often than not use POST, but I was wondering how I would go about passing the "id" parameter without putting it directly in the URL in this case.
Any help is much appreciated!