Re: [PHP] mysql_fetch_row win32 to Linux

2002-01-13 Thread sundogcurt
Like this $myquery = "SELECT * FROM xpackage"; print "myquery = $myquery"; $myresult = mysql_query($myquery); while($myrowz = mysql_fetch_row($myresult)){ print "" . $myrowz[0] . ""; } [EMAIL PROTECTED] wrote: >on 1/12/02 11:45 AM, sundogcurt at [EMAIL PROTECTED] wrote: > >>myquery = SEL

Re: [PHP] mysql_fetch_row win32 to Linux

2002-01-12 Thread mike cullerton
on 1/12/02 11:45 AM, sundogcurt at [EMAIL PROTECTED] wrote: > myquery = SELECT * FROM xpackage > Warning: Supplied argument is not a valid MySQL result resource in /path > to page with error/default.php on line 5 > > Line 5 is this part > while($myrowz = mysql_fetch_row($myresult)){ this tells

[PHP] mysql_fetch_row win32 to Linux

2002-01-12 Thread sundogcurt
Hi everybody, I have some scripts running on win32 Apache mySQL and they all run great. I have copied the entire application to my Linux box which I think I have running pretty smoothly now. The database is there and I can access it just fine etc etc. Here is the hitch (there's always a hitch)