Guest User

lab

a guest
Sep 17th, 2015
1,022
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.05 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Artpro</title>
  5. <style>
  6.     body {
  7.         width: 8.27in;
  8.         margin: 0in .2in;
  9.         }
  10.     .label{
  11.         /* Avery 5160 labels */
  12.         width: 3.24016in; /* plus .6 inches from padding */
  13.         height: 1.381in; /* plus .125 inches from padding */
  14.         padding: .125in 0 .05in .3in;
  15.        margin-right: .515in; /* the gutter */
  16.  
  17.         float: left;
  18.  
  19.         /*text-align: center;*/
  20.         overflow: hidden;
  21.  
  22.         outline: 1px dotted;  /*outline doesn't occupy space like border does */
  23.         }
  24.            
  25.     </style>
  26.  
  27.  <script>
  28. var t;
  29. function prt()
  30. {
  31.     clearTimeout(t);
  32.     window.print();
  33. }
  34.  t=setTimeout("prt()",1000);
  35. </script>
  36.  
  37. </head>
  38.  
  39. <body>
  40. <?php
  41.  
  42. $max = 15; // if max then 15 :/ i cri
  43.  $str1 = "<b>Title </b></br>Fname Lname</br>Media Type</br>200x500 cm</br>1958";
  44. for ($i=0; $i <= 16; $i++) {
  45.  echo'<div class="label">'. $str1.'</div>';
  46. }
  47.  
  48. ?>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment