I have a HTML table, generated in PHP and populated with data from a MySQL DB. Each column header, a regular HTML link, needs to have the ability to sort the data by that column. However, my department only allows a specific item to be passed as GET; everything else must be POSTed. I can get it to work by using the query string. However, is there a way to make the link POST?
I had another item on top of that. I'm sure I can do it through a custom JavaScript function. However I dont have access to the <header> portion of the page, as my department uses submenus that take care of headers and footers. Is there any way to put multiple statements in the href portion of the link? i.e. a href="javascriptne(); two(); three();">? If so, whats the punctuation?