RE: [PHP-DB] Getting last row, moving backwards..

2001-01-19 Thread Mark Roedel
, in descending order). --- Mark Roedel| "A wise man once told me that everything in Systems Programmer | life is either a lesson or a joke. Our task LeTourneau University | is to figure out which is which..." Longview, Texas, USA | -- Chris Savage

RE: [PHP-DB] php/linux/mssql

2001-03-19 Thread Mark Roedel
-dbmfix flag for configure when building FreeTDS? (If so, have you made the appropriate changes in PHP's code or applied the patches from the FreeTDS website?) --- Mark Roedel ([EMAIL PROTECTED]) || "There cannot be a crisis next week. Systems Programmer / WebMaster || My schedule is al

RE: [PHP-DB] HERE doc

2001-03-29 Thread Mark Roedel
have tried to make this work with PHP4.04 with no success. I also haven't found any reference to HERE docs in the PHP documentation. Is this really supported in PHP? http://www.php.net/manual/en/language.types.string.php --- Mark Roedel ([EMAIL PROTECTED]) || "There can

RE: [PHP-DB] array_diff usage

2001-04-02 Thread Mark Roedel
y do. How are you assigning the values you described at the top of your message? --- Mark Roedel ([EMAIL PROTECTED]) || "There cannot be a crisis next week. Systems Programmer / WebMaster || My schedule is already full." LeTourneau University ||-- Henr

RE: [PHP-DB] array_diff usage

2001-04-02 Thread Mark Roedel
-Original Message- From: Martin [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 10:48 AM To: Mark Roedel; [EMAIL PROTECTED] Subject: RE: [PHP-DB] array_diff usage This, on the other hand, makes me suspect that the arrays themselves don't actually contain what you

RE: [PHP-DB] Please help me with this script...

2001-04-02 Thread Mark Roedel
sample code that should help you troubleshoot exactly what went wrong, see http://www.php.net/FAQ.php#7.12 --- Mark Roedel ([EMAIL PROTECTED]) || "There cannot be a crisis next week. Systems Programmer / WebMaster || My schedule is already full." LeTourneau

RE: [PHP-DB] mysql_result()

2001-04-04 Thread Mark Roedel
($result, 0, 'town_city'); $postcode = @mysql_result($result, 0, 'postcode'); Looks reasonable to me...what happens when you try it? --- Mark Roedel ([EMAIL PROTECTED]) || "There cannot be a crisis next week. Systems Programmer / WebMaster || My schedule is already full."

RE: [PHP-DB] How I can use multiple results in MySQL

2001-04-23 Thread Mark Roedel
= table.region AND table.name='Brazil' For the second, I'd do something like SELECT name FROM table ORDER BY count DESC LIMIT 1 --- Mark Roedel ([EMAIL PROTECTED]) || There cannot be a crisis next week. Systems Programmer / WebMaster || My schedule

RE: [PHP-DB] Supplied argument is not a valid MySQL result resource...

2001-04-23 Thread Mark Roedel
a problem in the Query: ie.: $db_handle = mysql_connect(localhost, mysql, mysql); if($db_handle) { $result = mysql_db_query(mysql, select * from user, $db_handle); if($result = TRUE) if ($result == TRUE) --- Mark Roedel ([EMAIL PROTECTED]) || There cannot be a crisis next

RE: [PHP-DB] Informix question

2001-06-22 Thread Mark Roedel
(we're still on 9.x here). The speaker didn't know the setting off the top of his head, but indicated it was in Informix's online documentation, searchable at http://www.informix.com/answers/ --- Mark Roedel ([EMAIL PROTECTED]) || There cannot be a crisis next week. Systems Programmer

RE: [PHP-DB] Is MySQL in 4.0.6?

2001-06-26 Thread Mark Roedel
successfully connecting to a MySQL server. From what i've heard, MySQL is included in PHPbut why doesn't the connect work if it is included? Do you actually have a MySQL server running? --- Mark Roedel ([EMAIL PROTECTED]) || There cannot be a crisis next week. Systems Programmer

RE: [PHP-DB] MySQL Error???

2001-06-28 Thread Mark Roedel
that's causing problems... --- Mark Roedel ([EMAIL PROTECTED]) | There cannot be a crisis next week. Systems Programmer / WebMaster | My schedule is already full. LeTourneau University | -- Henry Kissinger -- PHP Database Mailing List (http://www.php.net/) To unsubscribe

RE: [PHP-DB] mysql_query returns nothing?

2001-07-05 Thread Mark Roedel
database access or connection.) --- Mark Roedel ([EMAIL PROTECTED]) || There cannot be a crisis next week. Systems Programmer / WebMaster || My schedule is already full. LeTourneau University ||-- Henry Kissinger -- PHP Database Mailing List (http://www.php.net

RE: [PHP-DB] Production: Linux/Apache/PHP -- FreeTDS -- W2K/MSSQL 7.0

2001-07-12 Thread Mark Roedel
, and mssql_min_message_severity.) --- Mark Roedel | The most overlooked advantage to owning a Systems Programmer| computer is that if they foul up there's no LeTourneau University | law against whacking them around a little. Longview, Texas, USA | -- Owen Porterfield -- PHP Database

RE: [PHP-DB] Random Password Generation/MSSQL

2001-07-12 Thread Mark Roedel
used for besides sql services, how heavily it's being utilized, etc. --- Mark Roedel | Nothing in life is so bad that it cannot be Systems Programmer| made much, much worse by the addition of LeTourneau University |lots of spikes and razors. Longview, Texas, USA

RE: [PHP-DB] Re: Making a new row in HTML tables

2001-07-25 Thread Mark Roedel
; case 9: $row_width=3; break; default: $row_width=6; } should do the trick. --- Mark Roedel | The most overlooked advantage to owning a Systems Programmer| computer is that if they foul up there's no LeTourneau University | law against whacking them around a little

RE: [PHP-DB] ms sql connect

2001-08-06 Thread Mark Roedel
a placeholder because you don't want to give out the real IP? (If that's actually what's in the file, then FreeTDS will be trying to connect to a copy of MS SQL Server running on your Linux box, which seems like sort of a futile exercise. Try changing it to the IP of the NT machine.) --- Mark Roedel

RE: [PHP-DB] MS SQL 6.5 connection

2001-08-07 Thread Mark Roedel
fails? --- Mark Roedel ([EMAIL PROTECTED]) | There cannot be a crisis next week. Systems Programmer / WebMaster | My schedule is already full. LeTourneau University | -- Henry Kissinger -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

RE: [PHP-DB] PHP vs. 2 database softwares

2001-10-01 Thread Mark Roedel
the same script when it's called for. What's the error message you get when you try to build with multiple DB's supported? --- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer| at himself, for he shall never cease LeTourneau University | to be entertained

RE: [PHP-DB] MSSQL error codes :/

2001-10-01 Thread Mark Roedel
this is a case where MSSQL is showing its Sybase roots...do you get the same errors if you change \' to ''? --- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer | at himself, for he shall never cease LeTourneau University | to be entertained. Longview

RE: [PHP-DB] Bug in new PHP Version?

2001-10-04 Thread Mark Roedel
you posted that appeared to indicate a change in functionality...do you have some reason to believe that things aren't working the same behind the scenes as they did before? --- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer | at himself, for he shall

RE: [PHP-DB] Informix + PHP any gotcha's to watch out for?

2001-10-23 Thread Mark Roedel
viewed from the result set, not the total number of rows returned. If you use mysql_fetch_array(), the equivalent Informix function is ifx_fetch_row(). --- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer | at himself, for he shall never cease LeTourneau

RE: [PHP-DB] variables gone?

2002-05-29 Thread Mark Roedel
--- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer| at himself, for he shall never cease LeTourneau University | to be entertained. Longview, Texas, USA | -- John Powell -Original Message- From: Rob Fraser [mailto:[EMAIL