Jump to content

apaunganhote

Members
  • Posts

    13
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

apaunganhote's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hello, I think that is probably same with what they gave it in sample. That i paste code here at the very fist post. I want the one about validating message is within in one page, like , when i click submit, it will show the validation message at the top and not disabling the form. Please kindly check the example here. I want exactly like that one. http://www.phpcaptcha.org/try-securimage/ Thank you.
  2. Yes, Thanks. IT removed the error. But, validation message comes when i start browsing. I didn't press the submit form yet. Please kindly see this screenshot. Please kindly check it for me. Thank you.
  3. Thanks for the quick example Got this error Parse error: syntax error, unexpected '}' in C:\local\www\captcha\secureimage\example_form.php on line 34 Please kindly check it again for me. Thanks
  4. Thanks for all of your help and great instructions to me. I really got some knowledges for you all. Thanks for everything. With Regards,
  5. Hello all, Sorry for my noob again. I want to get captcha image in my registration form and I tried to search captcha. I found that Secure Image captcha suit with my needs. I tried to install it and look their example form. But I didn't get like what i want. Because they didn't give us like that they shown in their demo. I want to get like this demo exactly. http://www.phpcaptcha.org/try-securimage/ In their example php, it's give like that, please kindly see the screen shot, In the second picture, it showing validating message, but when the validation message show, Image Verification and forms are disappear. I want to get like one is like, the example they show, please kindly see the screen shot. In the second picture of their example, validate message is shown upon and forms are not disappear. The one I want is exactly like that one. Can anyone help me out ? Please kindly help to me. This is the example_form.php code, that give it in package. <html> <head> <title>Securimage Test Form</title> </head> <body> <?php if (empty($_POST)) { ?> <form method="POST"> Username:<br /> <input type="text" name="username" /><br /> Password:<br /> <input type="text" name="password" /><br /> <!-- pass a session id to the query string of the script to prevent ie caching --> <img src="securimage_show.php?sid=<?php echo md5(uniqid(time())); ?>"><br /> <input type="text" name="code" /><br /> <input type="submit" value="Submit Form" /> </form> <?php } else { //form is posted include("securimage.php"); $img = new Securimage(); $valid = $img->check($_POST['code']); if($valid == true) { echo "<center>Thanks, you entered the correct code.</center>"; } else { echo "<center>Sorry, the code you entered was invalid. <a href=\"javascript:history.go(-1)\">Go back</a> to try again.</center>"; } } ?> </body> </html> Thanks. Please help me.
  6. Thanks marklarah. I will try to do it. Is that auto incrementing value mean, is that with database ? or Just dipslay only ? If that's display only, can you provide me that way also ? So that, I can learn it. Thank you.
  7. Hi Ken, Thanks for your help. That one is really effective. But I want to do is with, row , so that, <li> doesn't really work on me. Can you tell me with looping method like nafestski suggestion. Thanks for your help Hi nafetski, I tried your one and I got this error, can you please take a look for me ? Thanks for your help. I will be waiting. Warning: Invalid argument supplied for foreach()
  8. Hi nafetski, Thanks for your great info. The one I want to get is like the one u said about only for the display purposes with looping process. If you don't mind, can you give me the full php code for sample about that as I am so noob and as beginner. echo $i.". ".$arr[$i]; So that if i can see the code, I hope, I will be alittle understand, how to do it. Please kindly provide code for me. Thank you. With Regards,
  9. Hi Thanks, It's very fast response and great help. Thank you for this. I want one thing in there which is about auto numbering, Please kindly check my screenshot. At there u will see as four texts are printed. I want to get that things with assigning auto numbers before text For example, 1. test 2. testing 3. testing3 4. test Can you please kindly help for me. Thank you.
  10. Hello all, I am the new PHP beginner and I want to assign numbers automatically in each html row. Like this, I am testing the loop and i printed the result every time i click the submit button. Whenever i type in the input box, it print at html row. Let's say, I put "Name1", it print out Name1 << in first row then, i put Name 2, it print out Name2 below Name1 , like this Name1 Name2 So that, the one i want to do is that, assigning auto numbers to that print data. Example like 1. Name1 2. Name2 3. (whatever i type) Sorry for my bad explanation also. Please help me and point me how can i do for that with example php coding. So that I can understand clearly. Thank you very much.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.