Re: [PHP-DB] MySQL result resource

2003-02-01 Thread Edwin Boersma
29, 2003 10:02 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] MySQL result resource hello, i have a new issue... :-) i am getting: Warning: Supplied argument is not a valid MySQL result resource in /users/infoserv/web/register/ca/admin/catads.php on line 54 from: subcategory"); $scrow = mysql_

RE: [PHP-DB] MySQL result resource

2003-01-29 Thread John W. Holmes
... PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ > -Original Message- > From: Addison Ellis [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, January 29, 2003 10:02 PM > To: [EMAIL PROTECTED] > Subject: [PHP-DB] MySQL

[PHP-DB] MySQL result resource

2003-01-29 Thread Addison Ellis
hello, i have a new issue... :-) i am getting: Warning: Supplied argument is not a valid MySQL result resource in /users/infoserv/web/register/ca/admin/catads.php on line 54 from: while($row = mysql_fetch_object($obj)) { $scobj = mysql_db_query($dbname,"select * from subcateg

RE: [PHP-DB] MySQL Result Resource

2002-01-11 Thread matt stewart
shouldn't it be PASSWORD('madonna') ?? -Original Message- From: Necro [mailto:[EMAIL PROTECTED]] Sent: 11 January 2002 04:39 To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] MySQL Result Resource http://www.hotscripts.com/Detailed/4219.html <<--- that is the script B

Re: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Jason Wong
On Friday 11 January 2002 10:33, Necro wrote: > Ok, > > > I have tried to go to PASSWORD after none of the suggestions worked out. > > The current statement is: > $arg = "select password, 1 as auth from acl where username='$username' and > password = 'PASSWORD($password)'"; > > But the error

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
[EMAIL PROTECTED]] Sent: Friday, 11 January 2002 3:30 PM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] MySQL Result Resource Daniel, I had tried both with and without quotes. Neither work. Without quotes I get: select password, 1 as auth from acl where username='andrewd' and password = PASSW

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
n crypted by the PASSWORD call either. Andrew -Original Message- From: Daniel Barton [mailto:[EMAIL PROTECTED]] Sent: Friday, 11 January 2002 2:40 PM To: Necro Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] MySQL Result Resource Andrew: Don't put quotes around your MySQL function ca

Re: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Daniel Barton
='andrewd' and password = > 'PASSWORD(madonna)'Resource id #2 > > Any ideas? > > Andrew > > -Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Friday, 11 January 2002 8:56 AM > To: Necro; [EMAIL PROTECTED] >

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
word, 1 as auth from acl where username='andrewd' and password = 'PASSWORD(madonna)'Resource id #2 Any ideas? Andrew -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, 11 January 2002 8:56 AM To: Necro; [EMAIL PROTECTED] Subject: RE: [PH

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread php3
Addressed to: "Necro" <[EMAIL PROTECTED]> [EMAIL PROTECTED] ** Reply to note from "Necro" <[EMAIL PROTECTED]> Fri, 11 Jan 2002 03:41:43 +1100 > select password, 1 as auth from acl where (username='andrewd' and > password=(163e06103a371fd95b21b4a849bb4b91))1064 : You have an error in

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Miles Thompson
any idea at all as to what the problem is? > >Andrew > >-Original Message- >From: Necro [mailto:[EMAIL PROTECTED]] >Sent: Friday, 11 January 2002 3:35 AM >To: [EMAIL PROTECTED] >Subject: RE: [PHP-DB] MySQL Result Resource > > >Miles, > >You must MD5 th

Re: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Andrey Hristov
> Nope :( > > > > -Original Message- > From: Andrey Hristov [mailto:[EMAIL PROTECTED]] > Sent: Friday, 11 January 2002 3:28 AM > To: Necro > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP-DB] MySQL Result Resource > > > try this : > > select

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
3:35 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] MySQL Result Resource Miles, You must MD5 the value outside of mysql for it to evaluate it, from the error I just got. i have tried $passhash = MD5($username.$password); $arg = "select password, 1 as auth from acl where (username=

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
. Andrew -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED]] Sent: Friday, 11 January 2002 3:29 AM To: Necro; [EMAIL PROTECTED] Subject: RE: [PHP-DB] MySQL Result Resource LIGHT just came on!!! Why does ittake so long. MD5(andrew.madonna) - I think you're goint to have to

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
TED]] Sent: Friday, 11 January 2002 3:28 AM To: Necro Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] MySQL Result Resource try this : select password, 1 as auth from acl where (username='andrewd' and password=MD5("andrewd.madonna")); - Original Message - From: "

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Miles Thompson
rname='andrewd' and >password=MD5(andrewd.madonna)1109 : Unknown table 'andrewd' in where clause > >Andrew > >-Original Message- >From: Miles Thompson [mailto:[EMAIL PROTECTED]] >Sent: Friday, 11 January 2002 3:08 AM >To: Necro; [EMAIL PROTECTED] >S

Re: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Andrey Hristov
try this : select password, 1 as auth from acl where (username='andrewd' and password=MD5("andrewd.madonna")); - Original Message - From: "Necro" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 10, 2002 6:18 PM Subject: R

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
AM To: Necro; [EMAIL PROTECTED] Subject: Re: [PHP-DB] MySQL Result Resource I was having something similar and solved it by wrapping the column names in parentheses: select password, 1 as auth from acl where (username='andrewd' and password=MD5(andrewd.madonna)); It might help. or

Re: [PHP-DB] MySQL Result Resource

2002-01-10 Thread George Pitcher
-- From: "Necro" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 10, 2002 4:09 PM Subject: RE: [PHP-DB] MySQL Result Resource > Yep, > > andrewd is the username im trying to get this script to work with, its an > authentication script.. > &g

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
where clause Andrew -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED]] Sent: Friday, 11 January 2002 3:08 AM To: Necro; [EMAIL PROTECTED] Subject: RE: [PHP-DB] MySQL Result Resource Can you try this puppy at the MySQL console? I'd dearly love to know where "andr

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Miles Thompson
MD5($username.$password)"; > $result = mysql_query( $arg ) or die(mysql_errno()." : ". > mysql_error() ); > $row = mysql_fetch_array($result); > >Andrew > >-Original Message- >From: Miles Thompson [mailto:[EMAIL PROTECTED]] >Sent: Friday,

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
sql_errno()." : ". mysql_error() ); $row = mysql_fetch_array($result); Andrew -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED]] Sent: Friday, 11 January 2002 2:36 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] MySQL Result Resource Break up the code. I assume

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Miles Thompson
t; >Warning: Supplied argument is not a valid MySQL result resource in >d:\htdocs\infekt\packages\auth.inc on line 104 > >Andrew > > >-Original Message- >From: Miles Thompson [mailto:[EMAIL PROTECTED]] >Sent: Friday, 11 January 2002 2:05 AM >To: Necro; [EMAIL PRO

RE: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
argument is not a valid MySQL result resource in d:\htdocs\infekt\packages\auth.inc on line 104 Andrew -Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED]] Sent: Friday, 11 January 2002 2:05 AM To: Necro; [EMAIL PROTECTED] Subject: Re: [PHP-DB] MySQL Result Resource The

Re: [PHP-DB] MySQL Result Resource

2002-01-10 Thread Miles Thompson
The use of the MD5 function in the query doesn't look quite right. Shouldn't it be MD5('$password') or MD5('$username'.'$password') if concatenating? Also, mysql_db_query() has been a deprecated function for some time now, mysql_query() is recommended. Hope this gets you going - Miles Thomps

[PHP-DB] MySQL Result Resource

2002-01-10 Thread Necro
Lo all, Slight problem on an auth script... Warning: Supplied argument is not a valid MySQL result resource in d:\htdocs\infekt\packages\auth.inc on line 104 Line 26: define( "DATABASE", "imanager" ); Line 103: $arg = "select password, 1 as auth from acl where username='$username' and passwo

RE: [PHP-DB] Mysql result resource error

2001-12-20 Thread Shannon Doyle
var has anything but > numbers, the statement won't work. > > Jim > - Original Message - > From: "Shannon Doyle" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, December 19, 2001 4:19 PM > Subject: [PHP-DB] Mysql result resou

Re: [PHP-DB] Mysql result resource error

2001-12-20 Thread Jim Lucas
sage - From: "Shannon Doyle" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 19, 2001 4:19 PM Subject: [PHP-DB] Mysql result resource error > Hi People, > > I am getting a Not a valid Mysql result resource error with the > following code,

Re: [PHP-DB] Mysql result resource error

2001-12-19 Thread Bas Jobsen
$sql = "select Minor_Category FROM main where Page = 'wines' order by Minor_Category"; Op donderdag 20 december 2001 01:19, schreef Shannon Doyle: > Hi People, > > I am getting a Not a valid Mysql result resource error with the > following code, can someone take a look at this for me and see if

[PHP-DB] Mysql result resource error

2001-12-19 Thread Shannon Doyle
Hi People, I am getting a Not a valid Mysql result resource error with the following code, can someone take a look at this for me and see if there is anything that stands out Thanks, Shannon ".$cattyname.""; $catname = ""; $sql = "select Category,Code,Description,Pack,Unit,Price from main w