[PHP] Re: PHP Error logging

2011-01-18 Thread Carlos Medina
Am 18.01.2011 01:33, schrieb Jimmy Stewpot: Hello, I currently have a strange issue where we are seeing 'random errors' being displayed to end users. What I find most interesting is that in the php.ini file we have the following error settings. error_reporting = E_ALL ~E_NOTICE

[PHP] Re: Php error

2009-01-24 Thread Carlos Medina
mattias schrieb: ERR_DB_NO_DB_PASS What will this meen? The Database is a foreign DB without passport Carlos -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RE:[[PHP] Error in Script!!!

2007-03-06 Thread Tijnema !
On 3/5/07, Helder Lopes [EMAIL PROTECTED] wrote: Helder Lopes wrote: ?php // Conexão com o banco de dados include mysql.php; // Inicia sessões session_start(); // Recupera o login $login = $_POST[username]; // Recupera a senha $senha = $_POST[password]; // Usuário não forneceu a senha ou o

[PHP] RE:[[PHP] Error in Script!!!

2007-03-05 Thread Helder Lopes
Helder Lopes wrote: ?php // Conexão com o banco de dados include mysql.php; // Inicia sessões session_start(); // Recupera o login $login = $_POST[username]; // Recupera a senha $senha = $_POST[password]; // Usuário não forneceu a senha ou o login if($login== $senha= ) { echo Você deve

[PHP] RE:[[PHP] Error in Script!!! - SOLVED

2007-03-05 Thread Helder Lopes
Thanxs for helping! The error has that i was not calling the database, neither the connection!! Im so stupid! Sorry for your time lost!

[PHP] Re: php error message

2005-11-17 Thread Ben
Edward Martin said the following on 11/17/2005 04:27 PM: Warning: Cannot modify header information - headers already sent by (output started at /usr/home/ecmartin/public_html/ethics06/calendarlogin.php:8) in /usr/home/ecmartin/public_html/ethics06/sas.php on line 34 It means you are trying to

[PHP] Re: php error message

2005-11-17 Thread Chuck Anderson
Ben wrote: Edward Martin said the following on 11/17/2005 04:27 PM: Warning: Cannot modify header information - headers already sent by (output started at /usr/home/ecmartin/public_html/ethics06/calendarlogin.php:8) in /usr/home/ecmartin/public_html/ethics06/sas.php on line 34 It

Re: [PHP] Re: php error message

2005-11-17 Thread Jasper Bryant-Greene
Chuck Anderson wrote: Ben wrote: Edward Martin said the following on 11/17/2005 04:27 PM: Warning: Cannot modify header information - headers already sent by (output started at /usr/home/ecmartin/public_html/ethics06/calendarlogin.php:8) in /usr/home/ecmartin/public_html/ethics06/sas.php on

[PHP] Re: PHP error on form

2005-07-28 Thread Sonia
Hi First some of your $_POST array variables are written like $POST['var'], you need to change them to $_POST['var']. Then because you are not using the dot operator in your string variables and you are using a associative array you must enclose the array variable in {$arr['var']} tags! //

[PHP] Re: PHP error on form

2005-07-28 Thread Bruce Gilbert
I made the suggestions mentioned by Mike and don't get any error, but the form doesn't work properly. Check it out at http://www.inspired-evolution.com/Contact_Form_test.php the PHP form CODE I now have is: ? $form_block = FORM METHOD=\POST\ ACTION=\$PHP_SELF\ pstrongYour Name:/strong/p INPUT

RE: [PHP] Re: PHP error on form

2005-07-28 Thread Jay Blanchard
[snip] I made the suggestions mentioned by Mike and don't get any error, but the form doesn't work properly. Check it out at http://www.inspired-evolution.com/Contact_Form_test.php [/snip] You never sent the first 60 lines of code or so, and your origianl post doesn't have 58 lines in it. Please

[PHP] Re: php error

2005-02-16 Thread Matthew Weier O'Phinney
* Stefan [EMAIL PROTECTED]: I've a strange problem When I try to send a form with method=POST to a php-file I always get an HTTP 404 error. I really don't know why, because the file exists on the server. What are you setting the action attribute to? Should be the path to your script. If the

[PHP] Re: PHP error catching....

2004-07-20 Thread Torsten Roehr
Scott Fletcher [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] What are those php functions that catch the PHP errors, not display it and do something to it while the user load a webpage. I don't remember what those are. :-( FletchSOD You can write your own error handling

[PHP] Re: PHP error messages

2003-02-16 Thread Lord Loh.
That is not an error! It is a Warning...I got it the other day when the file was empty (or did not exist or something). Use @ prefix to make it disappear ?php $ar=@file(http://www.something.com/the_filename.txt;); ? Hope this helps... Lord Loh. -- PHP General Mailing List