[PHP-DB] error

2002-05-07 Thread Chris Grigor
Howdi guys any help on this would be greatful I have a page that submits to this script with a value of search but when I submit it gives me an error Parse error: parse error in /var/www/html/ul/mysql_fetch_array.php on line 11 anyhelp here would be greatful, I dont see what the error could

[PHP-DB] error

2004-09-28 Thread Remember14a
Dear friends, Script writes to database, however gives this error while on internet web server, on local host doesn't give same error. Any guidance, please Thank you - Back to Main Notice: Undefined index: op in \\premfs15\sites\premium15\mrbushforpeace

[PHP-DB] error

2005-07-05 Thread Mail Delivery Subsystem
The original message was included as attachment Virus Warning Message The virus (W32/[EMAIL PROTECTED]) was detected in the attachment transcript.zip. The attached File transcript.zip has been removed. Nachfolgender Virus (W32/[EMAIL PROTECTED]) wurde im Attachment transcript.

[PHP-DB] Error

2007-06-26 Thread David Skyers
Hi I have a page that inserts data into a oracle table using a oracle stored procedure via php. However when the php runs I get the following error: Warning: oci_execute() [function.oci-execute]: ORA-06550: line 2, column 7: PLS-00553: character set name is not recognized ORA-06550: line 0, colum

[PHP-DB] error

2011-04-07 Thread Chris Stinemetz
I am getting the following error when I try to use my edit.php script: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 I can't seem to find anything wrong with my syntax below. Has anyone ever had

[PHP-DB] Error

2001-03-15 Thread Julio Cuz, Jr.
Hi-- When I run the following code: if($myrow = pg_fetch_array($result,0)) { echo "ok..."; } else { die(include("../sqlerror.inc")); } I get this error message: "Warning: Unable to jump to row 0 on PostgreSQL result index 2 in /html/rccd/remodel/display.php on line 27" Please help

[PHP-DB] ERROR

2001-04-14 Thread Matt Coyne
Hi all I am getting an error which I don't understand. It is: Warning: 0 is not a MySQL result index in /usr/www/users/three0/_host/castingcollective/_dev/php/flashtest/flashsearch .php3 on line 302 Any ideas? thanks Matt //t h r e e z e r o : : : the mill, millstone

[PHP-DB] error

2001-05-22 Thread J.B.M. Case Schilder
every time i get this error: Warning: MySQL Connection Failed: Unknown MySQL Server Host '0f2scom' (2) in /web/sites/139/gamie/www.game-boy-advance.f2s.com/addartikel.php on line 22 Unable toconnect to database this is de code(ther are dutch line's in it because this code is for an dutch site):

Re: [PHP-DB] error

2002-05-07 Thread Maureen
One thing I noticed quickly. You have too many opening ( on the line that says: while (($row = mysql_fetch_array($result, MYSQL_ASSOC)) 3 opening and 2 closing. This would cause a parse error. Without knowing which line is line 11, it is hard to say if there is anything else. HTH

[PHP-DB] error 1100

2002-11-25 Thread Chris Barnes
Hi people, I dont know why but am stuck trying to debug this problem. I keep getting error number 1100 (Table 'jobs' was not locked with LOCK TABLES) from PHP when i try querying a mysql database. It has me stumped because I am using the LOCK TABLES statement when locking the tables...but maybe the

RE: [PHP-DB] error

2004-09-28 Thread Bastien Koert
try checking for the value if (isset($_POST["op"] != "addpost")) { or to supress the error, use the '@' symbol in fron of the $_POST or $_GET if (@$_POST["op"] != "addpost") { Bastien From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP-

Re: [PHP-DB] error

2004-09-28 Thread Janet Valade
[EMAIL PROTECTED] wrote: Dear friends, Script writes to database, however gives this error while on internet web server, on local host doesn't give same error. Any guidance, please Thank you - Back to Main Notice: Undefined index: op in \\premfs15\sites\p

[PHP-DB] Error Help

2004-11-29 Thread Chris Payne
Hi there everyone, Thanks to everyone helping with connecting to a remote server, works wonderfully now :-) I do have a final question, had a look online but couldn’t find what I needed. It’s hard to explain why, but basically individuals have my program on their HD, the DB is on their HD

[PHP-DB] Error handling

2005-03-11 Thread Guillermo
Hi, I'm new to PHP; I installed version 5.0.3 using Apache 2 and Postgres 8 on Win XP SP2. I have a connection class and one of its methods is: public function EjecutaSQL($pe_textoSQL = "") { return pg_query($this->id, $pe_textoSQL); } where $pe_textoSQL contains the SQL sentence. If

[PHP-DB] error handling

2005-03-15 Thread Chenri
hello, how can i use error_log( ) function to capture the error occured in my server, currently the Error warning is switched off and i can't turn it on because it is in production server the problem is the query miss some records, and i didn't see it's error message beside this code $err=my

Re: [PHP-DB] error

2011-04-07 Thread Karl DeSaulniers
I believe this line should read.. ini_set('display_errors', 1); Just something I think I caught. Might not be your solution though. HTH, Karl On Apr 7, 2011, at 11:00 PM, Chris Stinemetz wrote: ini_set('display_errors', '1'); Karl DeSaulniers Design Drumm http://designdrumm.com -- PHP D

Re: [PHP-DB] error

2011-04-07 Thread Jim Giner
The two query statements are different - in one you quote $id and in the other you don't. It is definitely a mysql error so it's not the line you suggested. "Karl DeSaulniers" wrote in message news:6fe62364-f9fc-4612-8c5d-6ce48fc66...@designdrumm.com... >I believe this line should read.. > >

Re: [PHP-DB] error

2011-04-07 Thread Chris Stinemetz
I am pretty sure it is in my code. I am just getting an error form one of my echoes. Still can't get it to work correctly though. Any help is greatly appreciated. Thank you, Chris http://www.w3.org/TR/html4/strict.dtd";> Edit Record '.$error.''; } ?> ID: First Name: * L

Re: [PHP-DB] error

2011-04-07 Thread Karl DeSaulniers
Hi Chris, I believe you only need to do a htmlspecialchars when displaying data as readable text that your retrieved from the database after inserting. And probably some other situations as well, but I don't think you need to do htmlspecialchars on the mysql_real_escape data when inserting into

Re: [PHP-DB] error

2011-04-07 Thread Karl DeSaulniers
Hi Chris, Try this.. Or season to taste.. $q = "UPDATE expiringleases SET Cricket_Region = '".mysql_real_escape_string($Cricket_Region)."', Market = ". $Market."' WHERE Search_Ring = '".mysql_real_escape_string($id)."'"; mysql_query($q) or die(mysql_error()); Best, Karl On Apr 8, 2011, at

Re: [PHP-DB] error

2011-04-07 Thread Karl DeSaulniers
Ooops. Sry, forgot an escape. $q = "UPDATE expiringleases SET Cricket_Region = '".mysql_real_escape_string($Cricket_Region)."', Market = ".mysql_real_escape_string($Market)."' WHERE Search_Ring = '".mysql_real_escape_string($id)."'"; mysql_query($q) or die(mysql_error()); Best, Karl O

Re: [PHP-DB] error

2011-04-08 Thread Bastien
On 2011-04-08, at 1:57 AM, Karl DeSaulniers wrote: > Ooops. > Sry, forgot an escape. > > $q = "UPDATE expiringleases SET Cricket_Region = > '".mysql_real_escape_string($Cricket_Region)."', Market = > ".mysql_real_escape_string($Market)."' WHERE Search_Ring = > '".mysql_real_escape_strin

[PHP-DB] Error prevention

2001-03-13 Thread Martin Skjöldebrand
I'm baffled (again ) In my mql database I'm doing: SELECT cl_login FROM client WHERE cl_login = "xxx"; and if "xxx" exists I get the result xxx while if it doesn't exist I get an empty string. In PHP I'm doing $querytest = "SELECT cl_login FROM client WHERE cl_login = '$txtLogin';"; $testr

[PHP-DB] Error Control

2001-03-25 Thread Jason Bell
Hello! I'm writing a script that validates a form It creates users in a mysql table, where there are 2 unique columns 'username' and 'email'. I'm putting mysql_error() into a variable, but I don't want the end user to see that particular message... is there a way to look at just the key that

Re: [PHP-DB] ERROR

2001-04-16 Thread Johannes Janson
Hi, it seems like there is an undefined index ;-) post some line around l. 302 for further help. Johannes "Matt Coyne" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi all > > I am getting an error which I don't understand. It is: > > Warning: 0 is no

[PHP-DB] Error message

2001-05-23 Thread Anderson Sone
What it means?? I see it in a SQL Query from MSSQL 2000 Server: Msg 8152, Level 16, State 9, Line 1 String or binary data would be truncated. The statement has been terminated. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: [PHP-DB] error

2001-05-23 Thread Johannes Janson
Hi, > Warning: MySQL Connection Failed: Unknown MySQL Server Host '0f2scom' (2) in > /web/sites/139/gamie/www.game-boy-advance.f2s.com/addartikel.php on line 22 > Unable toconnect to database [...snip...] > mysql_connect(db.game-boy-advance.f2s.com,*,**) or die("Unable > toconnect to data

[PHP-DB] Error 127

2001-07-19 Thread Cami
Hi everybody, All of the sudden I got an error one of mysql tables. Got error 127 from table handler. Can't browse it not even from phpmyadmin get the same error. Anybody had this before? What do I do to recuperate my table? I really appreciate any help, Thanks, Cami -- PHP Database Mailing Li

[PHP-DB] Error notice

2003-07-12 Thread Marco Mastrorilli
-Notice: Use of undefined constant data.. -Notice: Use of undefined constant mail... -Undefined variable Why in my scripts i always get error notice like this? How can i solve this problem? Thanks

[PHP-DB] Error settings

2003-10-21 Thread Dillon, John
How do I get rid of the undefined variable errors I get on a new (default) set up of Apache 1.3.28/PHP4.3.2 (without re-writing the code). It works on the internet on my host providers server but I am running this on localhost. I also get undefined offset error. Regards, John

[PHP-DB] Error Checking

2013-01-08 Thread Ethan Rosenberg, PhD
Dear List - 1] What function(s) do you use for error checking? 2] What are the settings for the parameter(s) in the functions? 3] Do you have different php.ini files for development and production? Thank you. Ethan -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP-DB] error loading libifgen.so

2002-05-10 Thread Ron Andrews
I'm trying to use PHP with Informix support. If I use Apache with dynamic modules, I get the following error when I try to load the Apache server: "Cannot load /usr/local/apache/libexec/libphp4.so into server: /opt/informix/lib/esql/libifgen.so: undefined symbol: stat" Apache loads if I use

[PHP-DB] Error Loading File

2002-06-11 Thread Bryan Gintz
I am getting this error with a new install of PHP4.2.1 and Zend Optimizer 1.3.1: The file '/tmp/phpr4WYQY' must be in the database directory or be readable by all I just updated PHP and the Zend Optimizer, and it had worked previously with PHP4.1.2, Any ideas?? Thanks -- PHP Database Mai

[PHP-DB] Error query : mysql_result

2002-10-10 Thread Burgess
Hi I have used the mysql_result function to return some specific information from database. The information is returned as it should but I keep getting this error message: Warning: Unable to jump to row 0 on MySQL result index 4 in /u1.bath/s31/eh842/public_html/SCR/register/process.php on line

[PHP-DB] error on count()

2004-09-07 Thread Sancerni Veronica
hello, this is problably newbie question, but I can not understand why my count() function doesn't work. I need to count how many items has a determinated customer ordered ever. 1. I tired to get the array like this: $una = $check["uname"]; function orderquantity ($una) { $pss = mysql_query(

[PHP-DB] Error radio buttons

2004-09-18 Thread Remember14a
Dear friends, I have a form with radio check boxes, on submission to Php snippet output should be score ! if user clicks right answer, otherwise score-0 However it is repeatedly giving me score-1 irrespective of correct radio button is clicked or incorrect radio button is clicked. Any guidance,

RE: [PHP-DB] Error Help

2004-11-30 Thread Mike Johnson
doesn't work with connection failures. I think what you're looking to do is suppress the PHP/DB error and supply your own. What you want to do is preprend the db connection function with `@' and add your own upon failure -- something like this: The only problem with this is that i

[PHP-DB] Error testing MySQL

2005-06-28 Thread Michiel Jordens
From: Jordens Michiel <[EMAIL PROTECTED]> To: php-db@lists.php.net, php-db@lists.php.net Subject: Error testin MySQL Date: Tue, 28 Jun 2005 15:51:42 -0700 Hello All, I’m trying to test MySQL. The code that I’m using is below. PHPtest Error " . mysql_errno() . ":"

[PHP-DB] error creating tables

2007-02-27 Thread aconite
im trying to create a database in a php file.i have MySql 5.0.33 PHP 5.2.1 this is the code i have in the php file $con = mysql_pconnect("127.0.0.1","root","12345"); if (!$con) { die('Could not connect: ' . mysql_error()); } if (mysql_query("CREATE DATABASE mydatabase",$con)) { echo

[PHP-DB] Error compiling php

2001-02-23 Thread Enrico Comini
During compilation of php4 I have this: What I have to do ? Thanks, Enrico DXML_BYTE_ORDER=12 -g -O2 -c sapi_apache.c sapi_apache.c:32: httpd.h: No such file or directory sapi_apache.c:33: http_config.h: No such file or directory sapi_apache.c:41: http_core.h: No such file or directory sapi_a

RE: [PHP-DB] Error prevention

2001-03-13 Thread Michael Rudel
AIL PROTECTED]] Sent: Tuesday, March 13, 2001 5:05 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Error prevention I'm baffled (again ) In my mql database I'm doing: SELECT cl_login FROM client WHERE cl_login = "xxx"; and if "xxx" exists I get the result xxx while if i

RE: [PHP-DB] Error prevention

2001-03-13 Thread Martin Skjöldebrand
Michael Rudel wrote: > Hi Martin, > > ... you forgot to 'mysql_fetch_row' or 'mysql_result'. Read about it in > the PHP-Manual in the MySQL Functions. Thanks Mike (and everyone else who pointed this out), Sometimes you're blind. When you think you pass the "complete-and-utter-newbie" phase som

Re: [PHP-DB] Error Control

2001-03-26 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] ("Jason Bell") wrote: > Hello! I'm writing a script that validates a form It creates users in a > mysql table, where there are 2 unique columns 'username' and 'email'. > > I'm putting mysql_error() into a variable, but I don't want the end u

[PHP-DB] error ORA-12699

2001-06-27 Thread sang
I have installed NT4+PHP+ORACLE8.0.4+APACHE in my computer. I want to access ORACLE server to another computer from web server. It is ok to access ORACLE SERVER with PERL, but i cannot access using PHP. The first error is ora-12514 , but i change, change and change, now it is always ORA-12699 Nati

Re: [PHP-DB] Error 127

2001-07-19 Thread John Pickett
ssage - From: Cami To: [EMAIL PROTECTED] Sent: Thursday, July 19, 2001 8:56 AM Subject: [PHP-DB] Error 127 Hi everybody, All of the sudden I got an error one of mysql tables. Got error 127 from table handler. Can't browse it not even from phpmyadmin get the same error. Anybody

Re: [PHP-DB] Error 127

2001-07-19 Thread John Pickett
Howdy ;-) I have a problem when trying to display data in HTML from a MySQL query. Here's what happens: 1) I convert the text entered using htmlentities (). I then insert it into the database table. If I do a query from a terminal on the data it looks fine. 2) When I do a select query on th

RE: [PHP-DB] Error 127

2001-07-19 Thread Cami
Thanks everybody for pointing me to the right place. I manage to recover it. Thank God. Cami -Original Message- From: Cami [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 19, 2001 3:57 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Error 127 Hi everybody, All of the sudden I got an error

Re: [PHP-DB] Error 127

2001-07-19 Thread Steve Brett
you know i did this last week and can't remember the functions is used. i had exactly the same problem but had to dump the records as plain text files. i used get_html_translation_table . if you look at the example in the compiled html help file for php there is a section of code that uses this

[PHP-DB] Error ORA-24327

2001-07-19 Thread cristiano
I can connect my oracle server from apache with php function OCILogon("user","pwd","dbname"); without problems... but sometimes when i reload the same web page i get the ORA-24327 error "OCISessionBegin: Error while trying to retrieve text for error ORA-24327" My machine is a Sun solaris whit

[PHP-DB] error on post

2001-08-13 Thread John Telesh
I have created a form which I cannot duplicate the error which is coming up only sometimes. An affiliate to my client had received emails regarding the following error: "The requested method POST is not allowed for the URL/index.html" The page this is running on is called "maxout.php" and it is

[PHP-DB] Error inserting CLOB

2001-08-30 Thread Tom Tsongas
Hi folks. I am getting a bizarre error when trying to insert CLOB data into my Oracle 9i database. (Using PHP4 on Apache 1.3.20) Error refers to a missing 'comma'?! Here is the exact error: Warning: OCIStmtExecute: ORA-00917: missing comma in /www/htdocs/Etrack/oracle_operations.php on line 52 C

[PHP-DB] Error help needed

2001-12-07 Thread Chris Payne
Hi there everyone, I've just reinstalled Windows 2000 for the second time, and I am still getting errors when I try to read MySQL databases - especially from within Myadmin (But also through other code I have written myself). I'm using the latest build of PHP and the latest build of Perl and M

[PHP-DB] Error Help Thanks

2001-12-07 Thread Chris Payne
Hi there everyone, Thank you all for your help - sometimes you work on something so hard that your mind just goes blank. I've turned off general notices in the php.ini file and made sure just urgent erros (Compilation etc ...) are turned on. I'll look at these new commands at a later date as

[PHP-DB] error message print

2003-01-14 Thread Addison Ellis
hello, how can i get an error message to print in the color red as in the code below? thank you for your time, addison $message_new = "$zip is not a valid zip code. Please try again."; -- Addison Ellis small independent publishing co. 114 B 29th Avenue North N

[PHP-DB] error checking question

2003-06-26 Thread dpgirago
Hello everyone, I've been experimenting with checking for errors in data inserted into a table using an html form. The main page displays the result of a "select * from the_table" at the top of the page, with the form for inserting the data beneath. The SQL for the insert occurs on a differe

Re: [PHP-DB] Error notice

2003-07-12 Thread David Smith
You are referencing variables that you have not created (or perhaps array indexes that don't exist). To suppress these messages, fix your code to not do such things, or just put this at the top of your scripts: error_reporting( E_ALL ^ E_NOTICE ); Or edit php.ini to make it happen globally:

Re: [PHP-DB] Error settings

2003-10-21 Thread CPT John W. Holmes
From: "Dillon, John" <[EMAIL PROTECTED]> > How do I get rid of the undefined variable errors I get on a new (default) > set up of Apache 1.3.28/PHP4.3.2 (without re-writing the code). It works on > the internet on my host providers server but I am running this on localhost. > I also get undefined

RE: [PHP-DB] Error settings

2003-10-21 Thread Dillon, John
From: "Dillon, John" <[EMAIL PROTECTED]> > How do I get rid of the undefined variable errors I get on a new (default) > set up of Apache 1.3.28/PHP4.3.2 (without re-writing the code). It works on > the internet on my host providers server but I am running this on localhost. > I also get undefined

Re: [PHP-DB] Error settings

2003-10-21 Thread CPT John W. Holmes
From: "Dillon, John" <[EMAIL PROTECTED]> > Hm. Adjusted error_reporting to none. Why would I still get: > > "Forbidden > You don't have permission to access /method="post" on this server. > -- -- > > Apache/1.3.28 Server

Re: [PHP-DB] Error Checking

2013-01-08 Thread tamouse mailing lists
On Tue, Jan 8, 2013 at 11:54 AM, Ethan Rosenberg, PhD wrote: > Dear List - > > 1] What function(s) do you use for error checking? > 2] What are the settings for the parameter(s) in the functions? > 3] Do you have different php.ini files for development and production? This makes more sense answer

[PHP-DB] Error creating new table

2002-04-08 Thread Lisi
I am trying to create the following table using PHPMyAdmin: CREATE TABLE IF NOT EXISTS ayny( organization varchar(50) NOT NULL, subtitle varchar(50) NOT NULL, img varchar(20) NOT NULL, width varchar(5), height varchar(5), link varchar(30) NOT

[PHP-DB] Error: ./configure --with-pgsql

2002-07-30 Thread Jan Feller
Hi! Does anyone know a solution to this problem? When i run ./configure --with-pgsql(Sparc Solaris 8 + php 4.1.2 ), I get the following error message: "lex:not found configure: error: cannot find output from lex; giving up" Thx in advance Jan -- GMX - Die Kommunikationsplattform im Inter

RE: [PHP-DB] Error query : mysql_result

2002-10-10 Thread Snijders, Mark
would be nice if you would tell which line is 140 -Original Message- From: Burgess [mailto:[EMAIL PROTECTED]] Sent: donderdag 10 oktober 2002 11:14 To: [EMAIL PROTECTED] Subject: [PHP-DB] Error query : mysql_result Hi I have used the mysql_result function to return some specific

Re: [PHP-DB] Error query : mysql_result

2002-10-10 Thread Thomas Lamy
Burgess [mailto:[EMAIL PROTECTED]] wrote: > Hi > > I have used the mysql_result function to return some specific > information > from database. The information is returned as it should but > I keep getting > this error message: > > Warning: Unable to jump to row 0 on MySQL result index 4 in

RE: [PHP-DB] Error query : mysql_result

2002-10-10 Thread John W. Holmes
This usually means your query failed. Check for errors using mysql_error(). ---John Holmes... > -Original Message- > From: Burgess [mailto:[EMAIL PROTECTED]] > Sent: Thursday, October 10, 2002 5:14 AM > To: [EMAIL PROTECTED] > Subject: [PHP-DB] Error query : mysql_result

[PHP-DB] error messages to variables

2002-11-03 Thread Bob Lockie
"You can suppress the error message on failure by prepending a @ to the function name.". How can you get the error string into a local variable? -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://w

Re: [PHP-DB] error on count()

2004-09-07 Thread Peter Ellis
You need to pass the functions a variable to work with because you've specified parameters. Try: $okuan = orderquantity($una); Ditto for the other function call. -- Peter Ellis - [EMAIL PROTECTED] Web Design and Development Consultant naturalaxis | http://www.naturalaxis.com/ On Tue, 2004-09-0

Re: [PHP-DB] error on count()

2004-09-07 Thread zareef ahmed
> > 1. I tired to get the array like this: > > $una = $check["uname"]; > > function orderquantity ($una) { > > $pss = mysql_query("SELECT OID FROM orders WHERE > una = '".trim($una)."'") or die (mysql_error("Query > error on Order search")); > > while($pisao=mysql_fetch_array($pss)) { > > re

[PHP-DB] Error of radio buttons

2004-09-18 Thread Remember14a
Dear Friends, Want to get rid of this error, pasted below. Line 19 comes at "else" statement. Any guidance, please. --- Parse error: parse error, unexpected T_ELSE in C:\HOME\doctorbush\quiz.php on line 19 -

[PHP-DB] Error with "Where" Clause

2005-03-14 Thread kc68
I get only the table headings and text before and after the table, but not the table, when I add the "where" clause as below. Without the "where" clause, the table does come up but (as expected) is repetitive and very long. I'm using a template that I've used many times. I've tried chang

[PHP-DB] Error: "Resource id #3"

2005-05-14 Thread Marc Henri
Hello, I'm starting to learn how to manage databases with MySQL/PHP. The program is very basic but I have a strange error: "Resource id #3". I read many things on Internet and understood that others have this error because they are trying to echo the pointer of the query and not the result itself.

RE: [PHP-DB] Error testing MySQL

2005-06-28 Thread Bastien Koert
Error 0 means that there were no errors in the execution of the query. It does not mean that the query actually returned results that you expect. Bastien From: "Michiel Jordens" <[EMAIL PROTECTED]> To: php-db@lists.php.net Subject: [PHP-DB] Error testing MySQL Date: Tue, 28 J

[PHP-DB] Error for registration mail.

2007-01-07 Thread Chris Carter
Hi, I am trying to send an email to the user after he registers himself on the website. The code is a DB code that 1) Inserts the data to DB table 2) Sends an email to the user with his details. 3) Passes on a Thank you page. The code works fine without the email code. But I get this error when

RE: [PHP-DB] error creating tables

2007-02-27 Thread Bastien Koert
check your permissions for the user, perhaps the create table permission is missing or the permissions need to be flushed to take effect bastien From: aconite <[EMAIL PROTECTED]> To: php-db@lists.php.net Subject: [PHP-DB] error creating tables Date: Tue, 27 Feb 2007 03:58:23 -0800 (PST

Re: [PHP-DB] error creating tables

2007-02-28 Thread Frank Flynn
Good rule - to debug try to run the same command on the command line of the terminal tool, you'll get better errors. But I suspect you have not said what the PRIMARY KEY is - typically you would say: PRIMARY KEY(f_name, l_name) or perhaps account whatever, it should be unique. Good Luck, Fr

Re: [PHP-DB] error creating tables

2007-03-03 Thread Haydar TUNA
Hello, I tried to run your SQL query with my private database and there wasn't any problem. You can use primary key like your PHP code because I run your SQL in the mysql command line succesfully. Did you connect root account to your mysql server? If the account is root, there isn't any

[PHP-DB] Error connect to MySQL

2001-01-19 Thread Rosen
Hi, While I try to connect to remote MySQL server i recieve "Can't connect to 'host' (10060). Where I can get description of retrieved error ? Thanks, Rosen Marinov -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

[PHP-DB] Error handling with connection?

2001-01-20 Thread John Coonrod
When a database connection fails, how do I detect that in my script so I can skip all the rest? -- PHP Database 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 PRO

[PHP-DB] Error connect to SYBASE

2001-01-21 Thread 王菁
Hi, While I try to connect to SYBASE server i recieve "Message from server is invalid" Where I can get description of retrieved error ? Thanks, wangjing

[PHP-DB] error and general problems

2001-03-26 Thread Liz Bander
I am getting a parse error for the return line every time I try and view the page. Can anyone tell me why? The code is below. $results = "select req, source, number from orders where req=" . $GLOBALS["req"] . ", source=" . $GLOBALS["source"] . ", number=" .$GLOBALS["req"] . ""; if (

Re: [PHP-DB] error ORA-12699

2001-06-27 Thread Anthony Carlos
ed, 27 Jun 2001 18:59:31 +0900 > To: [EMAIL PROTECTED] > Subject: [PHP-DB] error ORA-12699 > > I have installed NT4+PHP+ORACLE8.0.4+APACHE in my computer. > I want to access ORACLE server to another computer from web server. > It is ok to access ORACLE SERVER with PERL, but i cann

Re: [PHP-DB] error ORA-12699

2001-06-27 Thread sang
tnsnames.ora file on your client, and have a corresponding entry in > your listern.ora file on your server. > > I suspect that your client machine is trying to access an Oracle database on > itself, because no connect string was specified. > > Lemme know if this helps, > &

Re: [PHP-DB] error ORA-12699

2001-06-28 Thread Wayne Bastow
ding entry > in > > your listern.ora file on your server. > > > > I suspect that your client machine is trying to access an Oracle database > on > > itself, because no connect string was specified. > > > > Lemme know if this helps, > > > > Anthony &g

RE: [PHP-DB] error ORA-12699

2001-06-29 Thread Anthony Carlos
to resolve it into a protocol, address, and sid. In other words, ORCL is shorthand notation for all of the TCP/IP info and then some. I hope this makes sense, Anthony -Original Message- From: sang [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 27, 2001 9:32 AM To: [EMAIL PROTECTED] Subject: Re

Re: [PHP-DB] error on post

2001-08-13 Thread Renze Munnik
On Mon, Aug 13, 2001 at 03:38:50PM -0700, John Telesh wrote: > I have created a form which I cannot duplicate the error which is coming up > only sometimes. An affiliate to my client had received emails regarding the > following error: > > "The requested method POST is not allowed for the URL/in

[PHP-DB] Error in SQL syntax

2001-08-27 Thread Alex V.Varavva
Hi! On execute script ("TODAY"-24)'; $sth = ibase_query ($db, $stmt); ... ?> I have error InterBase: Dynamic SQL Error expression evaluation not supported in ./test.php Why ? This is correctly SQL syntax Regards Alex -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-ma

Re: [PHP-DB] Error help needed

2001-12-07 Thread Jason Wong
On Saturday 08 December 2001 05:28, Chris Payne wrote: > Hi there everyone, > > I've just reinstalled Windows 2000 for the second time, and I am still > getting errors when I try to read MySQL databases - especially from within > Myadmin (But also through other code I have written myself). > > I'm

Re: [PHP-DB] Error help needed

2001-12-07 Thread Bruno Gimenes Pereti
- From: "Chris Payne" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 07, 2001 7:28 PM Subject: [PHP-DB] Error help needed Hi there everyone, I've just reinstalled Windows 2000 for the second time, and I am still getting errors when I

Re: [PHP-DB] Error help needed

2001-12-07 Thread Andrey Hristov
find the section where error_reporting is set in php.ini and set i to 0 This is not an error but an warning (E_WARNING). Regards, Andrey Hristov - Original Message - From: "Chris Payne" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 07, 2001 11:

Re: [PHP-DB] Error help needed

2001-12-07 Thread Dario Fernando Escobar R.
hris Payne" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, December 07, 2001 4:28 PM Subject: [PHP-DB] Error help needed Hi there everyone, I've just reinstalled Windows 2000 for the second time, and I am still getting errors when I try to read MySQL databases - esp

Re: [PHP-DB] error message print

2003-01-14 Thread Kent Roper
echo "$message_new"; Is that what you wanted? - Original Message - From: "Addison Ellis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 14, 2003 5:01 PM Subject: [PHP-DB] error message print > hello, > how can i get an erro

FW: [PHP-DB] error checking question

2003-06-26 Thread David Shugarts
-- Forwarded Message > From: David Shugarts <[EMAIL PROTECTED]> > Date: Thu, 26 Jun 2003 18:53:53 -0400 > To: <[EMAIL PROTECTED]> > Subject: Re: [PHP-DB] error checking question > > Hi, David-- > > The question you are asking belongs to the topic or co

RE: [PHP-DB] error checking question

2003-06-27 Thread Ford, Mike [LSS]
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 26 June 2003 20:22 > > What I would like to do is somehow have a redundant error > check on the server > side and then display an error message above the form on the > main page should > fields be left blank

[PHP-DB] Error connecting with Mysql

2003-11-13 Thread Webmaster D.G.R.E.R.
Hi: I understand that this list is about PHP but, may be, any webmaster can help me. Linux Suse 8.2. I was installed apache, php and mysql, all working fine. from prompt i write mysql and run correctly, i create the database, tables and grant permisions to users. all right. but, when i run

Re: [PHP-DB] Error creating new table

2002-04-08 Thread Remco Oosten
;[EMAIL PROTECTED]> Sent: Monday, April 08, 2002 11:11 AM Subject: [PHP-DB] Error creating new table > I am trying to create the following table using PHPMyAdmin: > > CREATE TABLE IF NOT EXISTS ayny( > organization varchar(50) NOT NULL, > subtitle varchar(50) NOT

Re: [PHP-DB] Error creating new table

2002-04-08 Thread Lisi
i" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Monday, April 08, 2002 11:11 AM >Subject: [PHP-DB] Error creating new table > > > > I am trying to create the following table using PHPMyAdmin: > > > > CREATE TABLE IF NOT EXISTS ayny( > >

Re: [PHP-DB] Error creating new table

2002-04-08 Thread Remco Oosten
"PHP-DB" <[EMAIL PROTECTED]> Sent: Monday, April 08, 2002 11:33 AM Subject: Re: [PHP-DB] Error creating new table > Worked like a charm, thanks. > > How do I avoid varchar if I the size of the text will vary with each entry? > > It's going to be a pretty s

Re: [PHP-DB] Error creating new table

2002-04-08 Thread George Pitcher
You can't have NOT NULL assigned to a text field. george - Original Message - From: "Lisi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, April 08, 2002 10:11 AM Subject: [PHP-DB] Error creating new table > I am trying to create the fo

RE: [PHP-DB] Error creating new table

2002-04-08 Thread Rick Emery
The problem is that he assigned a length to a TEXT field. You cannot do that. -Original Message- From: George Pitcher [mailto:[EMAIL PROTECTED]] Sent: Monday, April 08, 2002 3:13 AM To: [EMAIL PROTECTED]; Lisi Subject: Re: [PHP-DB] Error creating new table You can't have NOT

Re: [PHP-DB] Error creating new table

2002-04-08 Thread Alex Behrens
Q: 3969599 Owner of the 3D-Unlimited Network: http://www.3d-unlimited.com Send News: [EMAIL PROTECTED] - Original Message - From: "George Pitcher" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "Lisi" <[EMAIL PROTECTED]> Sent: Monday, April 08, 2002 3:13 A

  1   2   3   >