Join 300,406 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,602 people online right now. Registration is fast and FREE... Join Now!
I keep getting an error when I submit my form. Error:
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /export/home/schult23/public_html/rfs/form/contact-form.php:9) in /export/home/schult23/public_html/rfs/form/securimage.php on line 422
Here is my php code for securimage.php. Any help would be greatly appreciated.
Josh
CODE
<?php
/** * Project: Securimage: A PHP class for creating and managing form CAPTCHA images<br /> * File: securimage.php<br /> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or any later version.<br /><br /> * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details.<br /><br /> * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br /><br /> * * Any modifications to the library should be indicated clearly in the source code * to inform users that the changes are not a part of the original software.<br /><br /> * * If you found this script useful, please take a quick moment to rate it.<br /> * http://www.hotscripts.com/rate/49400.html Thanks. * * @link http://www.phpcaptcha.org Securimage PHP CAPTCHA * @link http://www.phpcaptcha.org/latest.zip Download Latest Version * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation * @copyright 2007 Drew Phillips * @author drew010 <drew@drew-phillips.com> * @version 1.0.3.1 (March 24, 2008) * @package Securimage * */
/** ChangeLog
1.0.3.1 - Error reading from wordlist in some cases caused words to be cut off 1 letter short
1.0.3 - Removed shadow_text from code which could cause an undefined property error due to removal from previous version
1.0.2 - Audible CAPTCHA Code wav files - Create codes from a word list instead of random strings
1.0 - Added the ability to use a selected character set, rather than a-z0-9 only. - Added the multi-color text option to use different colors for each letter. - Switched to automatic session handling instead of using files for code storage - Added GD Font support if ttf support is not available. Can use internal GD fonts or load new ones. - Added the ability to set line thickness - Added option for drawing arced lines over letters - Added ability to choose image type for output
*/
/** * Output images in JPEG format */ define('SI_IMAGE_JPEG', 1); /** * Output images in PNG format */ define('SI_IMAGE_PNG', 2); /** * Output images in GIF format * Must have GD >= 2.0.28! */ define('SI_IMAGE_GIF', 3);
/** * The desired width of the CAPTCHA image. * * @var int */ var $image_width = 118;
/** * The desired width of the CAPTCHA image. * * @var int */ var $image_height = 36;
/** * The image format for output.<br /> * Valid options: SI_IMAGE_PNG, SI_IMAGE_JPG, SI_IMAGE_GIF * * @var int */ var $image_type = SI_IMAGE_PNG;
/** * The length of the code to generate. * * @var int */ var $code_length = 5;
/** * The character set for individual characters in the image.<br /> * Letters are converted to uppercase.<br /> * The font must support the letters or there may be problematic substitutions. * * @var string */ var $charset = 'ABCDEFGHKLMNPRSTUVWYZ23456789'; //var $charset = '0123456789';
/** * Create codes using this word list * * @var string The path to the word list to use for creating CAPTCHA codes */ var $wordlist_file = '../words/words.txt';
/** * True to use a word list file instead of a random code * * @var bool */ var $use_wordlist = false;
/** * Whether to use a GD font instead of a TTF font.<br /> * TTF offers more support and options, but use this if your PHP doesn't support TTF.<br /> * * @var boolean */ var $use_gd_font = false;
/** * The GD font to use.<br /> * Internal gd fonts can be loaded by their number.<br /> * Alternatively, a file path can be given and the font will be loaded from file. * * @var mixed */ var $gd_font_file = 'gdfonts/bubblebath.gdf';
/** * The approximate size of the font in pixels.<br /> * This does not control the size of the font because that is determined by the GD font itself.<br /> * This is used to aid the calculations of positioning used by this class.<br /> * * @var int */ var $gd_font_size = 20;
// Note: These font options below do not apply if you set $use_gd_font to true with the exception of $text_color
/** * The path to the TTF font file to load. * * @var string */ var $ttf_file = "./VeraSe.ttf";
/** * The font size.<br /> * Depending on your version of GD, this should be specified as the pixel size (GD1) or point size (GD2)<br /> * * @var int */ var $font_size = 18;
/** * The minimum angle in degrees, with 0 degrees being left-to-right reading text.<br /> * Higher values represent a counter-clockwise rotation.<br /> * For example, a value of 90 would result in bottom-to-top reading text. * * @var int */ var $text_angle_minimum = -17;
/** * The minimum angle in degrees, with 0 degrees being left-to-right reading text.<br /> * Higher values represent a counter-clockwise rotation.<br /> * For example, a value of 90 would result in bottom-to-top reading text. * * @var int */ var $text_angle_maximum = 17;
/** * The X-Position on the image where letter drawing will begin.<br /> * This value is in pixels from the left side of the image. * * @var int */ var $text_x_start = 5;
/** * Letters can be spaced apart at random distances.<br /> * This is the minimum distance between two letters.<br /> * This should be <i>at least</i> as wide as a font character.<br /> * Small values can cause letters to be drawn over eachother.<br /> * * @var int */ var $text_minimum_distance = 20;
/** * Letters can be spaced apart at random distances.<br /> * This is the maximum distance between two letters.<br /> * This should be <i>at least</i> as wide as a font character.<br /> * Small values can cause letters to be drawn over eachother.<br /> * * @var int */ var $text_maximum_distance = 23;
/** * The background color for the image.<br /> * This should be specified in HTML hex format.<br /> * Make sure to include the preceding # sign! * * @var string */ var $image_bg_color = "#e4e4c9";
/** * The text color to use for drawing characters.<br /> * This value is ignored if $use_multi_text is set to true.<br /> * Make sure this contrasts well with the background color.<br /> * Specify the color in HTML hex format with preceding # sign * * @see Securimage::$use_multi_text * @var string */ var $text_color = "#b1b165";
/** * Set to true to use multiple colors for each character. * * @see Securimage::$multi_text_color * @var boolean */ var $use_multi_text = false;
/** * String of HTML hex colors to use.<br /> * Separate each possible color with commas.<br /> * Be sure to precede each value with the # sign. * * @var string */ var $multi_text_color = "#0a68dd,#f65c47,#8d32fd";
/** * Set to true to make the characters appear transparent. * * @see Securimage::$text_transparency_percentage * @var boolean */ var $use_transparent_text = false;
/** * The percentage of transparency, 0 to 100.<br /> * A value of 0 is completely opaque, 100 is completely transparent (invisble) * * @see Securimage::$use_transparent_text * @var int */ var $text_transparency_percentage = 15;
// Line options /** * Draw vertical and horizontal lines on the image. * * @see Securimage::$line_color * @see Securimage::$line_distance * @see Securimage::$line_thickness * @see Securimage::$draw_lines_over_text * @var boolean */ var $draw_lines = true;
/** * The color of the lines drawn on the image.<br /> * Use HTML hex format with preceding # sign. * * @see Securimage::$draw_lines * @var string */ var $line_color = "#DBDBB7";
/** * How far apart to space the lines from eachother in pixels. * * @see Securimage::$draw_lines * @var int */ var $line_distance = 15;
/** * How thick to draw the lines in pixels.<br /> * 1-3 is ideal depending on distance * * @see Securimage::$draw_lines * @see Securimage::$line_distance * @var int */ var $line_thickness = 2;
/** * Set to true to draw angled lines on the image in addition to the horizontal and vertical lines. * * @see Securimage::$draw_lines * @var boolean */ var $draw_angled_lines = true;
/** * Draw the lines over the text.<br /> * If fales lines will be drawn before putting the text on the image.<br /> * This can make the image hard for humans to read depending on the line thickness and distance. * * @var boolean */ var $draw_lines_over_text = false;
/** * For added security, it is a good idea to draw arced lines over the letters to make it harder for bots to segment the letters.<br /> * Two arced lines will be drawn over the text on each side of the image.<br /> * This is currently expirimental and may be off in certain configurations. * * @var boolean */ var $arc_linethrough = false;
/** * The colors or color of the arced lines.<br /> * Use HTML hex notation with preceding # sign, and separate each value with a comma.<br /> * This should be similar to your font color for single color images. * * @var string */ var $arc_line_colors = "#8080ff";
/** * Full path to the WAV files to use to make the audio files, include trailing /.<br /> * Name Files [A-Z0-9].wav * * @since 1.0.1 * @var string */ var $audio_path = './audio/';
//END USER CONFIGURATION //There should be no need to edit below unless you really know what you are doing.
/** * The gd image resource. * * @access private * @var resource */ var $im;
/** * The background image resource * * @access private * @var resource */ var $bgimg;
/** * The code generated by the script * * @access private * @var string */ var $code;
/** * The code that was entered by the user * * @access private * @var string */ var $code_entered;
/** * Whether or not the correct code was entered * * @access private * @var boolean */ var $correct_code;
/** * Class constructor.<br /> * Because the class uses sessions, this will attempt to start a session if there is no previous one.<br /> * If you do not start a session before calling the class, the constructor must be called before any * output is sent to the browser. * * <code> * $securimage = new Securimage(); * </code> * */ function Securimage() { if ( session_id() == '' ) { // no session has been started yet, which is needed for validation session_start(); } }
/** * Generate a code and output the image to the browser. * * <code> * <?php * include 'securimage.php'; * $securimage = new Securimage(); * $securimage->show('bg.jpg'); * ?> * </code> * * @param string $background_image The path to an image to use as the background for the CAPTCHA */ function show($background_image = "") { if($background_image != "" && is_readable($background_image)) { $this->bgimg = $background_image; }
$this->doImage(); }
/** * Validate the code entered by the user. * * <code> * $code = $_POST['code']; * if ($securimage->check($code) == false) { * die("Sorry, the code entered did not match."); * } else { * $valid = true; * } * </code> * @param string $code The code the user entered * @return boolean true if the code was correct, false if not */ function check($code) { $this->code_entered = $code; $this->validate(); return $this->correct_code; }
/** * Draw the CAPTCHA code over the image * * @access private * */ function drawWord() { if ($this->use_gd_font == true) { if (!is_int($this->gd_font_file)) { //is a file name $font = @imageloadfont($this->gd_font_file); if ($font == false) { trigger_error("Failed to load GD Font file {$this->gd_font_file} ", E_USER_WARNING); return; } } else { //gd font identifier $font = $this->gd_font_file; }
/** * Reads a word list file to get a code * * @access private * @since 1.0.2 * @return mixed false on failure, a word on success */ function readCodeFromFile() { $fp = @fopen($this->wordlist_file, 'rb'); if (!$fp) return false;
$fsize = filesize($this->wordlist_file); if ($fsize < 32) return false; // too small of a list to be effective
if ($fsize < 128) { $max = $fsize; // still pretty small but changes the range of seeking } else { $max = 128; }
fseek($fp, rand(0, $fsize - $max), SEEK_SET); $data = fread($fp, 128); // read a random 128 bytes from file fclose($fp); $data = preg_replace("/\r?\n/", "\n", $data);
$start = strpos($data, "\n", rand(0, 100)) + 1; // random start position $end = strpos($data, "\n", $start); // find end of word
/** * Get WAV file data of the spoken code.<br /> * This is appropriate for output to the browser as audio/x-wav * * @since 1.0.1 * @return string WAV data * */ function getAudibleCode() { $letters = array(); $code = $this->getCode();
if ($code == '') { $this->createCode(); $code = $this->getCode(); }
/** * Save the code in the session * * @access private * */ function saveData() { $_SESSION['securimage_code_value'] = strtolower($this->code); }
/** * Validate the code to the user code * * @access private * */ function validate() { if ( isset($_SESSION['securimage_code_value']) && !empty($_SESSION['securimage_code_value']) ) { if ( $_SESSION['securimage_code_value'] == strtolower(trim($this->code_entered)) ) { $this->correct_code = true; $_SESSION['securimage_code_value'] = ''; } else { $this->correct_code = false; } } else { $this->correct_code = false; } }
/** * Get the captcha code * * @since 1.0.1 * @return string */ function getCode() { if (isset($_SESSION['securimage_code_value']) && !empty($_SESSION['securimage_code_value'])) { return $_SESSION['securimage_code_value']; } else { return ''; } }
/** * Check if the user entered code was correct * * @access private * @return boolean */ function checkCode() { return $this->correct_code; }
/** * Generate a wav file by concatenating individual files * @since 1.0.1 * @access private * @param array $letters Array of letters to build a file from * @return string WAV file data */ function generateWAV($letters) { $first = true; // use first file to write the header... $data_len = 0; $files = array(); $out_data = '';
if ( ($p = strpos($file['data'], 'LIST')) !== false) { // If the LIST data is not at the end of the file, this will probably break your sound file $info = substr($file['data'], $p + 4, 8); $data = unpack('Vlength/Vjunk', $info); $file['data'] = substr($file['data'], 0, $p); $file['size'] = $file['size'] - (strlen($file['data']) - $p); }
I keep getting an error when I submit my form. Error:
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /export/home/schult23/public_html/rfs/form/contact-form.php:9) in /export/home/schult23/public_html/rfs/form/securimage.php on line 422
Search for session_start(); Here is my php code for securimage.php. Any help would be greatly appreciated.
Josh
CODE
<?php
/** * Project: Securimage: A PHP class for creating and managing form CAPTCHA images<br /> * File: securimage.php<br /> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or any later version.<br /><br /> * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details.<br /><br /> * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA<br /><br /> * * Any modifications to the library should be indicated clearly in the source code * to inform users that the changes are not a part of the original software.<br /><br /> * * If you found this script useful, please take a quick moment to rate it.<br /> * http://www.hotscripts.com/rate/49400.html Thanks. * * @link http://www.phpcaptcha.org Securimage PHP CAPTCHA * @link http://www.phpcaptcha.org/latest.zip Download Latest Version * @link http://www.phpcaptcha.org/Securimage_Docs/ Online Documentation * @copyright 2007 Drew Phillips * @author drew010 <drew@drew-phillips.com> * @version 1.0.3.1 (March 24, 2008) * @package Securimage * */
/** ChangeLog
1.0.3.1 - Error reading from wordlist in some cases caused words to be cut off 1 letter short
1.0.3 - Removed shadow_text from code which could cause an undefined property error due to removal from previous version
1.0.2 - Audible CAPTCHA Code wav files - Create codes from a word list instead of random strings
1.0 - Added the ability to use a selected character set, rather than a-z0-9 only. - Added the multi-color text option to use different colors for each letter. - Switched to automatic session handling instead of using files for code storage - Added GD Font support if ttf support is not available. Can use internal GD fonts or load new ones. - Added the ability to set line thickness - Added option for drawing arced lines over letters - Added ability to choose image type for output
*/
/** * Output images in JPEG format */ define('SI_IMAGE_JPEG', 1); /** * Output images in PNG format */ define('SI_IMAGE_PNG', 2); /** * Output images in GIF format * Must have GD >= 2.0.28! */ define('SI_IMAGE_GIF', 3);
/** * The desired width of the CAPTCHA image. * * @var int */ var $image_width = 118;
/** * The desired width of the CAPTCHA image. * * @var int */ var $image_height = 36;
/** * The image format for output.<br /> * Valid options: SI_IMAGE_PNG, SI_IMAGE_JPG, SI_IMAGE_GIF * * @var int */ var $image_type = SI_IMAGE_PNG;
/** * The length of the code to generate. * * @var int */ var $code_length = 5;
/** * The character set for individual characters in the image.<br /> * Letters are converted to uppercase.<br /> * The font must support the letters or there may be problematic substitutions. * * @var string */ var $charset = 'ABCDEFGHKLMNPRSTUVWYZ23456789'; //var $charset = '0123456789';
/** * Create codes using this word list * * @var string The path to the word list to use for creating CAPTCHA codes */ var $wordlist_file = '../words/words.txt';
/** * True to use a word list file instead of a random code * * @var bool */ var $use_wordlist = false;
/** * Whether to use a GD font instead of a TTF font.<br /> * TTF offers more support and options, but use this if your PHP doesn't support TTF.<br /> * * @var boolean */ var $use_gd_font = false;
/** * The GD font to use.<br /> * Internal gd fonts can be loaded by their number.<br /> * Alternatively, a file path can be given and the font will be loaded from file. * * @var mixed */ var $gd_font_file = 'gdfonts/bubblebath.gdf';
/** * The approximate size of the font in pixels.<br /> * This does not control the size of the font because that is determined by the GD font itself.<br /> * This is used to aid the calculations of positioning used by this class.<br /> * * @var int */ var $gd_font_size = 20;
// Note: These font options below do not apply if you set $use_gd_font to true with the exception of $text_color
/** * The path to the TTF font file to load. * * @var string */ var $ttf_file = "./VeraSe.ttf";
/** * The font size.<br /> * Depending on your version of GD, this should be specified as the pixel size (GD1) or point size (GD2)<br /> * * @var int */ var $font_size = 18;
/** * The minimum angle in degrees, with 0 degrees being left-to-right reading text.<br /> * Higher values represent a counter-clockwise rotation.<br /> * For example, a value of 90 would result in bottom-to-top reading text. * * @var int */ var $text_angle_minimum = -17;
/** * The minimum angle in degrees, with 0 degrees being left-to-right reading text.<br /> * Higher values represent a counter-clockwise rotation.<br /> * For example, a value of 90 would result in bottom-to-top reading text. * * @var int */ var $text_angle_maximum = 17;
/** * The X-Position on the image where letter drawing will begin.<br /> * This value is in pixels from the left side of the image. * * @var int */ var $text_x_start = 5;
/** * Letters can be spaced apart at random distances.<br /> * This is the minimum distance between two letters.<br /> * This should be <i>at least</i> as wide as a font character.<br /> * Small values can cause letters to be drawn over eachother.<br /> * * @var int */ var $text_minimum_distance = 20;
/** * Letters can be spaced apart at random distances.<br /> * This is the maximum distance between two letters.<br /> * This should be <i>at least</i> as wide as a font character.<br /> * Small values can cause letters to be drawn over eachother.<br /> * * @var int */ var $text_maximum_distance = 23;
/** * The background color for the image.<br /> * This should be specified in HTML hex format.<br /> * Make sure to include the preceding # sign! * * @var string */ var $image_bg_color = "#e4e4c9";
/** * The text color to use for drawing characters.<br /> * This value is ignored if $use_multi_text is set to true.<br /> * Make sure this contrasts well with the background color.<br /> * Specify the color in HTML hex format with preceding # sign * * @see Securimage::$use_multi_text * @var string */ var $text_color = "#b1b165";
/** * Set to true to use multiple colors for each character. * * @see Securimage::$multi_text_color * @var boolean */ var $use_multi_text = false;
/** * String of HTML hex colors to use.<br /> * Separate each possible color with commas.<br /> * Be sure to precede each value with the # sign. * * @var string */ var $multi_text_color = "#0a68dd,#f65c47,#8d32fd";
/** * Set to true to make the characters appear transparent. * * @see Securimage::$text_transparency_percentage * @var boolean */ var $use_transparent_text = false;
/** * The percentage of transparency, 0 to 100.<br /> * A value of 0 is completely opaque, 100 is completely transparent (invisble) * * @see Securimage::$use_transparent_text * @var int */ var $text_transparency_percentage = 15;
// Line options /** * Draw vertical and horizontal lines on the image. * * @see Securimage::$line_color * @see Securimage::$line_distance * @see Securimage::$line_thickness * @see Securimage::$draw_lines_over_text * @var boolean */ var $draw_lines = true;
/** * The color of the lines drawn on the image.<br /> * Use HTML hex format with preceding # sign. * * @see Securimage::$draw_lines * @var string */ var $line_color = "#DBDBB7";
/** * How far apart to space the lines from eachother in pixels. * * @see Securimage::$draw_lines * @var int */ var $line_distance = 15;
/** * How thick to draw the lines in pixels.<br /> * 1-3 is ideal depending on distance * * @see Securimage::$draw_lines * @see Securimage::$line_distance * @var int */ var $line_thickness = 2;
/** * Set to true to draw angled lines on the image in addition to the horizontal and vertical lines. * * @see Securimage::$draw_lines * @var boolean */ var $draw_angled_lines = true;
/** * Draw the lines over the text.<br /> * If fales lines will be drawn before putting the text on the image.<br /> * This can make the image hard for humans to read depending on the line thickness and distance. * * @var boolean */ var $draw_lines_over_text = false;
/** * For added security, it is a good idea to draw arced lines over the letters to make it harder for bots to segment the letters.<br /> * Two arced lines will be drawn over the text on each side of the image.<br /> * This is currently expirimental and may be off in certain configurations. * * @var boolean */ var $arc_linethrough = false;
/** * The colors or color of the arced lines.<br /> * Use HTML hex notation with preceding # sign, and separate each value with a comma.<br /> * This should be similar to your font color for single color images. * * @var string */ var $arc_line_colors = "#8080ff";
/** * Full path to the WAV files to use to make the audio files, include trailing /.<br /> * Name Files [A-Z0-9].wav * * @since 1.0.1 * @var string */ var $audio_path = './audio/';
//END USER CONFIGURATION //There should be no need to edit below unless you really know what you are doing.
/** * The gd image resource. * * @access private * @var resource */ var $im;
/** * The background image resource * * @access private * @var resource */ var $bgimg;
/** * The code generated by the script * * @access private * @var string */ var $code;
/** * The code that was entered by the user * * @access private * @var string */ var $code_entered;
/** * Whether or not the correct code was entered * * @access private * @var boolean */ var $correct_code;
/** * Class constructor.<br /> * Because the class uses sessions, this will attempt to start a session if there is no previous one.<br /> * If you do not start a session before calling the class, the constructor must be called before any * output is sent to the browser. * * <code> * $securimage = new Securimage(); * </code> * */ function Securimage() { if ( session_id() == '' ) { // no session has been started yet, which is needed for validation session_start(); } }
/** * Generate a code and output the image to the browser. * * <code> * <?php * include 'securimage.php'; * $securimage = new Securimage(); * $securimage->show('bg.jpg'); * ?> * </code> * * @param string $background_image The path to an image to use as the background for the CAPTCHA */ function show($background_image = "") { if($background_image != "" && is_readable($background_image)) { $this->bgimg = $background_image; }
$this->doImage(); }
/** * Validate the code entered by the user. * * <code> * $code = $_POST['code']; * if ($securimage->check($code) == false) { * die("Sorry, the code entered did not match."); * } else { * $valid = true; * } * </code> * @param string $code The code the user entered * @return boolean true if the code was correct, false if not */ function check($code) { $this->code_entered = $code; $this->validate(); return $this->correct_code; }
/** * Draw the CAPTCHA code over the image * * @access private * */ function drawWord() { if ($this->use_gd_font == true) { if (!is_int($this->gd_font_file)) { //is a file name $font = @imageloadfont($this->gd_font_file); if ($font == false) { trigger_error("Failed to load GD Font file {$this->gd_font_file} ", E_USER_WARNING); return; } } else { //gd font identifier $font = $this->gd_font_file; }
/** * Reads a word list file to get a code * * @access private * @since 1.0.2 * @return mixed false on failure, a word on success */ function readCodeFromFile() { $fp = @fopen($this->wordlist_file, 'rb'); if (!$fp) return false;
$fsize = filesize($this->wordlist_file); if ($fsize < 32) return false; // too small of a list to be effective
if ($fsize < 128) { $max = $fsize; // still pretty small but changes the range of seeking } else { $max = 128; }
fseek($fp, rand(0, $fsize - $max), SEEK_SET); $data = fread($fp, 128); // read a random 128 bytes from file fclose($fp); $data = preg_replace("/\r?\n/", "\n", $data);
$start = strpos($data, "\n", rand(0, 100)) + 1; // random start position $end = strpos($data, "\n", $start); // find end of word
/** * Get WAV file data of the spoken code.<br /> * This is appropriate for output to the browser as audio/x-wav * * @since 1.0.1 * @return string WAV data * */ function getAudibleCode() { $letters = array(); $code = $this->getCode();
if ($code == '') { $this->createCode(); $code = $this->getCode(); }
/** * Save the code in the session * * @access private * */ function saveData() { $_SESSION['securimage_code_value'] = strtolower($this->code); }
/** * Validate the code to the user code * * @access private * */ function validate() { if ( isset($_SESSION['securimage_code_value']) && !empty($_SESSION['securimage_code_value']) ) { if ( $_SESSION['securimage_code_value'] == strtolower(trim($this->code_entered)) ) { $this->correct_code = true; $_SESSION['securimage_code_value'] = ''; } else { $this->correct_code = false; } } else { $this->correct_code = false; } }
/** * Get the captcha code * * @since 1.0.1 * @return string */ function getCode() { if (isset($_SESSION['securimage_code_value']) && !empty($_SESSION['securimage_code_value'])) { return $_SESSION['securimage_code_value']; } else { return ''; } }
/** * Check if the user entered code was correct * * @access private * @return boolean */ function checkCode() { return $this->correct_code; }
/** * Generate a wav file by concatenating individual files * @since 1.0.1 * @access private * @param array $letters Array of letters to build a file from * @return string WAV file data */ function generateWAV($letters) { $first = true; // use first file to write the header... $data_len = 0; $files = array(); $out_data = '';
if ( ($p = strpos($file['data'], 'LIST')) !== false) { // If the LIST data is not at the end of the file, this will probably break your sound file $info = substr($file['data'], $p + 4, 8); $data = unpack('Vlength/Vjunk', $info); $file['data'] = substr($file['data'], 0, $p); $file['size'] = $file['size'] - (strlen($file['data']) - $p); }
You can't set sessions or cookies or do anything that has to do with headers after they've already been sent. This means that you can't do any of that stuff after you've already output text (or anything, actually).
Lazy people, like me, usually just use ob_start(), but I'm told that's not the proper way to do it
Yours, Shane~
This post has been edited by ShaneK: 1 Jul, 2009 - 07:09 AM