Fwd: Re: [PHP] Just had a cool idea!

2001-09-11 Thread B. van Ouwerkerk

This reply was send to my private mailbox..

how may i go around doing this though... and sorry for yelling

Think logical. Visitor is 499, the next comes along, one visitor is added 
so your current visitor is 500 and BINGO he just won the jackpot.. your 
link.. whatever.

Before asking any further questions read:
http://www.tuxedo.org/~esr/faqs/smart-questions.html

Bye,

B.

  Think I would do it with an if.. then loop. Just after the counter is
  raised one you check if it equals your BINGO value.
 
  And you shouldn't yell at people trying to help you.
 
  Bye,
 
 
  B.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Just had a cool idea!

2001-09-09 Thread Kyle Smith

I was thinking, you know how they have those millionth customer things in shops, 
course ya do
Well, i have a simple counter on my site and i was wondering if i could do the same 
thing, like everytime you go on there if the counter is a multiple of 500 you get to 
have your site as a pop up for a week or so, well is this possible and if yes, can 
anybody give me some pointer?!!?


-lk6-
http://www.StupeedStudios.f2s.com
Home of the burning lego man!

ICQ: 115852509
MSN: [EMAIL PROTECTED]
AIM: legokiller666





Re: [PHP] Just had a cool idea!

2001-09-09 Thread B. van Ouwerkerk


like everytime you go on there if the counter is a multiple of 500 you get 
to have your site as a pop up for a week or so, well is this possible and 
if yes, can anybody give me some pointer?!!?

Use your own script and add more then one for each visit :-)

Uhm, your not going to ask money from people.. right??
/me don't like it when PPL are mislead and have to pay  for something 
with less value.. I don't mind if it's just for fun..

Don't think it's cool.. you're still giving people wrong information..

Perhaps you can work for M$ some day :-)
(ouch, that sounds like flamebait)

Bye,



B.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Just had a cool idea!

2001-09-09 Thread ReDucTor

You could use something like this

?php
$pageif = ads.php;
$count = 500;
$countfile = file(counter.txt);
$count = $countfile[0];
$fp = fopen(counter.txt, w);
fwrite($fp, $count);
fclose($fp);
$temp = $count / $count;
if(!is_float($temp))
echo scriptwindow.open('.$pageif.');/script\n; // my js knowledge
sucks
?
- Original Message -
From: B. van Ouwerkerk [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, September 10, 2001 1:54 AM
Subject: Re: [PHP] Just had a cool idea!



 like everytime you go on there if the counter is a multiple of 500 you
get
 to have your site as a pop up for a week or so, well is this possible and
 if yes, can anybody give me some pointer?!!?

 Use your own script and add more then one for each visit :-)

 Uhm, your not going to ask money from people.. right??
 /me don't like it when PPL are mislead and have to pay  for something
 with less value.. I don't mind if it's just for fun..

 Don't think it's cool.. you're still giving people wrong information..

 Perhaps you can work for M$ some day :-)
 (ouch, that sounds like flamebait)

 Bye,



 B.


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Just had a cool idea!

2001-09-09 Thread B. van Ouwerkerk


right... i didnt understand a word of that, anyway could you answer the
question please?

Uhm.. You don't understand it?? Then.. oh well.. never mind.

If you've got a counter which adds 1 for each visit just make it add 50 or 
100 or as many as you like.

Lots of counters in the world.. I'll bet you're going to find plenty of 
them at www.hotscripts.com

Bye,


B.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Just had a cool idea!

2001-09-09 Thread Kyle Smith

NO!! im saying when the counter gets to 500, 1000, 1500 etc it redirects you
to a page which you type in your information and you get a pop up on my site
for the week! Kapesh?

Be happy!

-lk6-
http://www.StupeedStudios.f2s.com
Home of the burning lego man!

ICQ: 115852509
MSN: [EMAIL PROTECTED]
AIM: legokiller666


- Original Message -
From: B. van Ouwerkerk [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, September 09, 2001 12:01 PM
Subject: Re: [PHP] Just had a cool idea!



 right... i didnt understand a word of that, anyway could you answer the
 question please?

 Uhm.. You don't understand it?? Then.. oh well.. never mind.

 If you've got a counter which adds 1 for each visit just make it add 50 or
 100 or as many as you like.

 Lots of counters in the world.. I'll bet you're going to find plenty of
 them at www.hotscripts.com

 Bye,


 B.


 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 To contact the list administrators, e-mail: [EMAIL PROTECTED]



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Just had a cool idea!

2001-09-09 Thread B. van Ouwerkerk


NO!! im saying when the counter gets to 500, 1000, 1500 etc it redirects you
to a page which you type in your information and you get a pop up on my 
site for the week! Kapesh?

You should have made clear what you wanted to do in the first place. Not in 
a sentence one should read 5 times to understand what you want..

Think I would do it with an if.. then loop. Just after the counter is 
raised one you check if it equals your BINGO value.

And you shouldn't yell at people trying to help you.

Bye,


B.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]