Re: [PHP] GET doesn't work as POST

2007-02-24 Thread Pintér Tibor
Otto Wyss írta: Dotan Cohen wrote: Try $_GET["kind"] Tried, doesn't help. O. Wyss echo ""; print_r($_REQUEST); echo "; and think... t -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] To many connections error message

2007-01-23 Thread Pintér Tibor
Chris írta: Pintér Tibor wrote: @, or ask your hoster to disable display_errors That can be done in the script ;) ini_set('display_errors', false); Sure it can, but its a lame host that enables displaying of errors by default, thats why I advised to ask them to disable it globall

Re: [PHP] To many connections error message

2007-01-23 Thread Pintér Tibor
@, or ask your hoster to disable display_errors t The questions is, since I don't have error reporting turned on, why am I getting an error message that includes the complete path to my connect script something I would like to not be telling the general public? Is there a way to suppre

Re: [PHP] PHP problem with array keys / pointers

2006-12-17 Thread Pintér Tibor
1 => cat 2 => dog 3 => mouse 4 => horse iwfm with array(1=>'cat',2=>'dog',3=>'mouse',4=>'horse'): output: Array ( [1] => cat [2] => dog [3] => mouse [4] => horse ) dog source: 'cat',2=>'dog',3=>'mouse',4=>'horse'); print_r($animals); $x=2; echo $animals[$x]."\n"; ?> t -- PHP Gen