Basic .post Question. Post a Form?

Basic .post Question. Post a Form?

Hello.

 

I'm working on a School Project which will go on for half a Year to create a Website with PHP,MYSQL and Jquery.

 

I'm currently trying to make a easy-way Access to edit a User by clicking on it's Table-Data.

Example

It's each having it's own Form Created by a MYSQL_Query.

 

Now my Question is. How do i make it Post a tr when i click on it?

I worked with the jQuery.Post Basic Code but i couldn't figure out how to let it post all of it.

Currently i just have the Script which does Change the Color on Hover of each tr.

Is there any easy way for a newbie to make this happen?

  1.  $(function () {
  2. $('tr').not(':first').hover(function () {
  3. $(this).css('background-color', '#3BC8F7');
  4. $(this).css('color', 'black');
  5. }, function () {
  6. $(this).css('background-color', '');
  7. $(this).css('color', '');
  8. });
  9. }); 

 I hope someone can help me out.
 
Faithfully 
 
Fabian95qw