Welcome Guest, Not a member yet? Register   Sign In
captcha image not loading in server
#3

Assuming you are using CodeIgniter Catpcha helper.

You have to use generated image URL instead of hardcoded URL.

Controller:
PHP Code:
$cap create_captcha($captcha_options);
$this->load->view('yourview', ['cap' => $cap]); 

View:
Code:
<?= $cap['image'] ?>

The image attribute already holds full img tag.

More in the manual:
https://www.codeigniter.com/user_guide/h...elper.html
Reply


Messages In This Thread
captcha image not loading in server - by kvanaraj - 07-13-2018, 03:45 AM
RE: captcha image not loading in server - by Pertti - 07-13-2018, 08:10 AM



Theme © iAndrew 2016 - Forum software by © MyBB