PHP Classes

File: upload/plugins/bulletinboard/api_libs/bb_refresh_captcha.php

Recommend this page to a friend!
  Classes of James Brows   PHP Bulletin Board   upload/plugins/bulletinboard/api_libs/bb_refresh_captcha.php   Download  
File: upload/plugins/bulletinboard/api_libs/bb_refresh_captcha.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Bulletin Board
Manage and post messages in multi-user forums
Author: By
Last change:
Date: 2 years ago
Size: 354 bytes
 

Contents

Class file image Download
<?php

function bb_refresh_captcha()
{
   
$result='
        <img src="'
.BB_Captcha_Image::make(6).'" style="margin:0px;padding:0px;" />
                                      <span class="btn btn-success btn-refresh-captcha" title="Refresh" style="position: absolute;right:15px;top:22px;"><i class="fa fa-sync"></i></span>
    '
;

    echo
responseData($result,'no');die();
}