RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread tedd
At 2:56 PM -0500 3/26/07, Richard Lynch wrote: On Sun, March 25, 2007 9:49 am, Jake McHenry wrote: Do I call the image creation file in an html There is no such thing as "inline" image, so just forget that. Yes, you just use a SRC in an IMG tag to point to a PHP script. That PHP script can

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread Jake McHenry
o: Brad Fuller; php-general@lists.php.net > Subject: RE: [PHP] My own "captcha" from 2 years ago.. > > At 10:59 AM -0400 3/26/07, Brad Fuller wrote: > > > >echo ''; > > > >This does not "run" or "call" image.php. > >

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread Richard Lynch
On Sun, March 25, 2007 9:02 pm, Jake McHenry wrote: > In image.php is this: > > session_start(); > > ..captcha code.. > $_SESSION['code'] = rand(blahblahblah) to get the random code Arooo? Don't randomize the code you're going to put on the image here. Make up a secret/random/obviou

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread Richard Lynch
On Sun, March 25, 2007 9:49 am, Jake McHenry wrote: > Do I call the image creation file in an html bunch of > things, and this is the only way I've been able to display the image > inline > so far, without the image headers blocking the rest of my output There is no such thing as "inline" ima

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread Brad Fuller
> From: tedd [mailto:[EMAIL PROTECTED] > At 10:59 AM -0400 3/26/07, Brad Fuller wrote: > > > >echo ''; > > > >This does not "run" or "call" image.php. > > > >This line of code sends this output to the browser. > > Brad: > > Yes, but the browser runs the code by trying to load an image. ... My

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread tedd
At 10:59 AM -0400 3/26/07, Brad Fuller wrote: echo ''; This does not "run" or "call" image.php. This line of code sends this output to the browser. Brad: Yes, but the browser runs the code by trying to load an image. Check this out: http://sperling.com/examples/assorted-captcha/index.php

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread Brad Fuller
> > -Original Message- > > From: tedd [mailto:[EMAIL PROTECTED] > > Sent: Monday, March 26, 2007 8:49 AM > > To: php-general@lists.php.net > > Subject: RE: [PHP] My own "captcha" from 2 years ago.. > > > > At 10:02 PM -0400 3/25/07,

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread Jake McHenry
> -Original Message- > From: tedd [mailto:[EMAIL PROTECTED] > Sent: Monday, March 26, 2007 8:49 AM > To: php-general@lists.php.net > Subject: RE: [PHP] My own "captcha" from 2 years ago.. > > At 10:02 PM -0400 3/25/07, Jake McHenry wrote: > >L

Re: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread Jochem Maas
Jake McHenry wrote: > Like I said... Even if they have sound turned on.. Which all my sets do... > Most of them don't have speakers... That was put into effect over a year ago > due to some people listening to those damn screaming prank things at full > volume... and didn'tr we all have a fun with

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-26 Thread tedd
At 10:02 PM -0400 3/25/07, Jake McHenry wrote: Like I said... Even if they have sound turned on.. Which all my sets do... Most of them don't have speakers... That was put into effect over a year ago due to some people listening to those damn screaming prank things at full volume... Anyways... I w

Re: [PHP] My own "captcha" from 2 years ago......

2007-03-25 Thread Tijnema !
This might be of interest, because cracking should be avoided as CAPTCHA is meant to stop from autosubmitting by computers. Tijnema > -Original Message- > From: tedd [mailto:[EMAIL PROTECTED] > Sent: Sunday, March 25, 2007 7:54 PM > To: Jake McHenry; 'tedd'; ph

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-25 Thread Jake McHenry
id that this happened until session_start was called again.. But it said it was fixed back in php4... Not sure what I missed :( Thanks, Jake > -Original Message- > From: tedd [mailto:[EMAIL PROTECTED] > Sent: Sunday, March 25, 2007 7:54 PM > To: Jake McHenry; 'tedd

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-25 Thread tedd
At 10:49 AM -0400 3/25/07, Jake McHenry wrote: Do I call the image creation file in an html Jake The audio is for visually impaired and unless their also deaf, they have sound turned on. tedd -- --- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mai

RE: [PHP] My own "captcha" from 2 years ago......

2007-03-25 Thread Jake McHenry
Do I call the image creation file in an html -Original Message- > From: tedd [mailto:[EMAIL PROTECTED] > Sent: Sunday, March 25, 2007 10:33 AM > To: Jake McHenry; php-general@lists.php.net > Subject: Re: [PHP] My own "captcha" from 2 years ago.. > > At

Re: [PHP] My own "captcha" from 2 years ago......

2007-03-25 Thread tedd
At 11:28 PM -0400 3/24/07, Jake McHenry wrote: Well, I've been creating my own... Since like two years ago... Lol.. But this is the KNOWN name now. Anyways... How can I get the info from the image creation script back to my main script? Sessions DO NOT WORK! They give me the previous entry in

[PHP] My own "captcha" from 2 years ago......

2007-03-24 Thread Jake McHenry
Well, I've been creating my own... Since like two years ago... Lol.. But this is the KNOWN name now. Anyways... How can I get the info from the image creation script back to my main script? Sessions DO NOT WORK! They give me the previous entry instead of the current.. Which obviously won't work