Re: [PHP-WIN] Newbye question

2002-06-26 Thread Scott Hurring
Yiss. php.ini, look for "error_reporting" i suspect that yours is set to the (default) of: "error_reporting = E_ALL" and the ISP's is set to something a bit more terse, like: "error_reporting = E_ALL & ~E_NOTICE" Notices are great for debugging and developing code, so i suggest you keep th

Re: [PHP-WIN] Newbye question

2002-06-23 Thread Saci
Hi Cristian I tried your code , and receive the folowing message Notice: Undefined index: texto in d:\inetpub\wwwroot\impac\php\teste03.php on line 5 I guess my problem is regarding configuration, to help here is my php.ini [PHP] engine = On short_open_tag = On asp_tags = on precision=

RE: [PHP-WIN] Newbye question

2002-06-23 Thread Ross Fleming
Check out the new global_register that phpv4.2 employs, variables cannot be set in the http request anymore, in order to access texto, you need to access $_GET[texto] > -Original Message- > From: Saci [mailto:[EMAIL PROTECTED]] > Sent: 23 June 2002 05:56 > To: [EMAIL PROTECTED] > Subject:

RE: [PHP-WIN] Newbye question

2002-06-23 Thread Christian Leberfinger
1) action="" [works also, with register_globals=Off] You can also leave the action-tag blank - then the form always posts to itself! 2) $texto should be $_POST['texto'] [again the autoglobals...] 3) Correct code - I hope it helps you Learning PHP "; ?> Christian L

RE: [PHP-WIN] Newbye question

2002-06-22 Thread Matthew Hillebrand
I don't think this will solve your problem, but you probably meant to write: action="" I've never heard of a predefined variable named $PATH_INFO... |-Original Message- |From: Saci [mailto:[EMAIL PROTECTED]] |Sent: Saturday, June 22, 2002 9:56 PM |To: [EMAIL PROTECTED] |Subject: [PHP-