PluginProbe
Custom Contact Forms / 2.2.0
Custom Contact Forms v2.2.0
7.16.1 7.16 7.15.2 7.15.0 7.14.0 7.13.0 7.11.0 trunk 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.2.1 2.0.1 2.0.2 2.0.3 2.1.0 2.2.0 2.2.3 2.2.4 2.2.5 3.0.0 All 171 releases
custom-contact-forms / image.php

image.php in Custom Contact Forms 2.2.0, at image.php

15 lines 415 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Custom Contact Forms Plugin
4 By Taylor Lovett - http://www.taylorlovett.com
5 Plugin URL: http://www.taylorlovett.com/wordpress-plugins
6 */
7 header("Content-type: image/png");
8 require_once('custom-contact-forms-images.php');
9 $image = new CustomContactFormsImages();
10 $str = rand(10000, 99999);
11 if (!session_id())
12 session_start();
13 $_SESSION[captcha] = $str;
14 $image->createImageWithText($str);
15 ?>