Array JSON in the post

Array JSON in the post

Hi friends,

I have the code below

  1. <script>
  2. function test(action,code,array){
  3. $.post('test.php',{
  4. action: action,
  5. code: code,
  6. 'array[]': array
  7. },function(response){
  8. });
  9. }
  10. </script>
  11. <input type="button" value="test" onclick="test('actionhere','codehere',{'option1':'value1','option2':'value2'})" />
How can I send that array JSON in the post?

Thanks a lot