SofianeLasri

captcha.png.php

Mar 7th, 2016
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php
  2. session_start();
  3.  
  4. header ("Content-type: image/png");
  5.  
  6. $img = imagecreate (55,18) or die ("Problème de création GD");
  7. $background_color = imagecolorallocate ($img, 175, 13, 33);
  8. $ecriture_color = imagecolorallocate($img, 255, 255, 255);
  9. imagestring ($img, 20, 4, 0, $_SESSION['captcha'] , $ecriture_color);
  10. imagepng($img);
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment