Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <div class="thumb thumb-rounded thumb-slide">
  2. <img src="<?php echo $result['staff_signature'];?>" alt="Signature IS BLANK">
  3.  
  4. <div class="caption">
  5. <input type="file" class="file-input" data-show-caption="false" data- show-upload="false" accept="image/*" id="signature" name="signature">
  6. </div>
  7. </div>
  8. <input type="hidden" name="imgsrc" id="imgsrc" value="<?php echo $result['staff_signature'];?>">
  9.  
  10. if($_FILES[signature]['name']!="")
  11. {
  12. //file upload code
  13. }
  14. else
  15. {
  16. $imgsrc=//get the imgsrc value using GET/POST ..whatever u are using the form
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement