Re: [PHP] HELP ME!!!!

2001-11-16 Thread Brian Clark
Hi P. Roescher, @ 12:52:36 PM on 11/16/2001, P. Roescher wrote: input type=checkbox name=?print $name? value=ON You probably want something like: input type=checkbox name=players['?print $name?'] value=ON That may not work, if not: input type=checkbox name=players[] value=?print

Re: [PHP] Help me to win the battle with browser's cache

2001-11-12 Thread Balaji Ankem
Hi, me also faced many probs last 3 months back and i overcome that. solution - use session variables.. register login info as session vars and during logout unregister... This is the solution to u'r problem.. - All the best -Balaji - Original

Re: [PHP] Help me to win the battle with browser's cache

2001-11-12 Thread Girish Nath
Hi I've found some code which i put it into this function. I've never got the meta tag technique to work but this seems to do the trick. Call noCache() before outputting anything to the page. function noCache() { header (Expires: Mon, 26 Jul 1997 05:00:00 GMT);// Date in the past header

Re: [PHP] Help me please.(Running stand-alone php)

2001-08-14 Thread miguel valero
Tina, Thank you for the help Tina :-)) I getting a good experience working with PHP and HTML (forms). Because of my full time job and personal commitments, I haven't been able to spend as much of my free time as I could in my project (Free Gallery Management System). After October I hope to

Re: [PHP] Help me please.(Running stand-alone php)

2001-08-07 Thread Bjorn Van Simaeys
Miguel, I see that your script has the extension .html Rename that file to .php and it normally should work. Greetz, Bjorn Van Simaeys www.bvsenterprises.com --- miguel valero [EMAIL PROTECTED] wrote: Unfortunately the -q parameter didn't fix the problem. Is anybody in the PHP mailing

Re: [PHP] Help me please.(Running stand-alone php)

2001-08-07 Thread Tina
The solution: You have to configure php with --enable-discard-path as in: ./configure --without-apache --enable-discard-path before you compile it. This is documented here: http://www.php.net/manual/en/security.php in the section: Case 4: PHP parser outside of web tree Now when you do

Re: [PHP] help me :)

2001-04-30 Thread Jason Mowat
Arvydas, I did something like this using a tree structure, using stacks. Each item on the stack could have 1 to 3 properties: Name, Parent, URL. If the object on the stack has only a Name property (i.e. Parent and URL are empty) it is assumed that this item is a root node. If the item has a

RE: [PHP] Help me! What is wrong?

2001-02-20 Thread Hoover, Josh
I think this might be a problem... IfDefine SSL AddModule mod_php3.c /IfDefine Shouldn't the IfDefine SSL be say PHP3 rather than SSL? Josh Hoover KnowledgeStorm, Inc. Searching for a new IT solution for your company? Need to improve your product marketing? Visit KnowledgeStorm

RE: [PHP] help me!! Cookie

2001-01-18 Thread Diego Fulgueira
When not explicitly set, a cookie works only for the domain where it was originally set. That means that if the user visits your website using the server IP address, he will receive a cookie that will not work when he uses the domain name instead of the IP address. Therefore, I recomend you set

<    1   2