Advertisement
Guest User

fdfdf

a guest
Aug 19th, 2015
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.95 KB | None | 0 0
  1. case 'upload':
  2.  
  3.         echo
  4.  
  5. '
  6.  
  7. <div style="margin:10px;">
  8. <label for="teamlogo1" style="float:left; margin: 5px 5px 0 0;"> Image 1:</label>
  9.  
  10.  
  11. <input type="upload_image" id="image_1"
  12. name="', $field['id'], '" id="', $field['id'], '" value="', $meta ? $meta : $field['std'], '"
  13.  
  14. named="image_1" value="" style="width: 550px; float:left; margin:0 5px;"/>
  15.  
  16. <input id="_btn" class="upload_image_button" type="button" value="Upload Image" />
  17. </div>', $field['desc'];
  18.  
  19.  
  20.     echo
  21.  
  22. '
  23.  
  24. <div style="margin:10px;">
  25. <label for="teamlogo2" style="float:left; margin: 5px 5px 0 0;"> Image 1:</label>
  26.  
  27.  
  28. <input type="upload_image" id="image_2"
  29. name="', $field['id'], '" id="', $field['id'], '" value="', $meta ? $meta : $field['std'], '"
  30.  
  31. named="image_2" value="" style="width: 550px; float:left; margin:0 5px;"/>
  32.  
  33. <input id="_btn" class="upload_image_button" type="button" value="Upload Image" />
  34. </div>', $field['desc'];
  35.  
  36.  
  37.  
  38.         break;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement