Guest User

Untitled

a guest
May 27th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.62 KB | None | 0 0
  1. <?php
  2. /**
  3.  * @file
  4.  *
  5.  *  Моя тестовая тема для формы
  6.  *
  7.  */
  8.  
  9. // $p = array();
  10. $p = $variables['f'];
  11.  
  12. print "<table width='10px'>";
  13. reset($p);
  14. while (next($p)) {
  15.     prev($p);
  16.     print "<tr>";
  17.     print "<td>";
  18.     print next($p);
  19.     print "</td>";
  20.     print "<td>";
  21.     print next($p);
  22.     print "</td>";
  23.     //  print "<td> - </td>";
  24.     print "<td>";
  25.     print next($p);
  26.     print "</td>";
  27.     print "<td>";
  28.     print next($p);
  29.     print "</td>";
  30.     print "</tr>";
  31. }
  32. print "</table>";
  33. // print 'test tamplate select place';
  34.  
  35. var_dump($variables['f']);
  36. // var_dump($variables['f_complet']);
  37. // var_dump($variables);
Add Comment
Please, Sign In to add comment