Guest User

Untitled

a guest
Jan 27th, 2022
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.53 KB | None | 0 0
  1. <?php
  2.  
  3. $data = [
  4.    'rows' =>
  5.     [
  6.         [
  7.             'id' => '1',
  8.             'ragione_sociale' => 'rag soc 1',
  9.             'email' => '[email protected]',
  10.         ],
  11.         [
  12.             'id' => '2',
  13.             'ragione_sociale' => 'rag soc 2',
  14.             'email' => '[email protected]',
  15.         ],
  16.     ],
  17.     'total' => '10',
  18.     'totalNotFiltered' => '10',
  19. ];
  20.  
  21. ?>
  22.  
  23. <script>
  24.     // F12 nel browser => Console
  25.  
  26.     var data = <?php echo(json_encode($data)); ?>;
  27.  
  28.     console.log(data);
  29. </script>
Advertisement
Add Comment
Please, Sign In to add comment