combining codes?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

nitrotrike
Forum Newbie
Posts: 8
Joined: Thu Feb 02, 2012 6:01 am

Re: combining codes?

Post by nitrotrike »

Ok, that was relatively painless, but the captcha doesn't show on the page using this, which is right before my </form> tag:

Code: Select all

<?php
          require_once('recaptchalib.php');
          $publickey = "mypublickey"; // you got this from the signup page
          echo recaptcha_get_html($publickey);
?>
            <input type="submit" value="Submit List"/>
This is EXACTLY how recaptcha says to write it, with the exception of my public key and renamed button. Now what am I missing??
Post Reply