Re: [PHP-WIN] Help on MYSQL Table design

2001-04-30 Thread Toby Miller
John, No, you could just add another link table. So you would have the following tables: personal_info -- ID -> unique id for family member NAME -> family members name family_info -- ID -> unique id for family F_NAME -> family name person

Re: [PHP-WIN] Help on MYSQL Table design

2001-04-30 Thread Toby Miller
John, No, you could just add another link table. So you would have the following tables: personal_info -- ID -> unique id for family member NAME -> family members name family_info -- ID -> unique id for family F_NAME -> family name person

Re: [PHP-WIN] Help on MYSQL Table design

2001-04-30 Thread Toby Miller
John, No, you could just add another link table. So you would have the following tables: personal_info -- ID -> unique id for family member NAME -> family members name family_info -- ID -> unique id for family F_NAME -> family name person

Re: [PHP-WIN] Hosting

2001-04-30 Thread Toby Miller
You could check out www.mybizhosting.com they have PHP4 and MySQL and they're decently priced with a really good network. I've been using them for a little while now and have been very happy with their services. - Original Message - From: "PHPWIN" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED

Re: [PHP-WIN] include

2001-04-20 Thread Toby Miller
This is extremely unfortunate as I don't know of a way to do this either. I do however have a workaround that's not too tedious. Insert the following code into the very top of all of your documents: $GLOBALS["DOCUMENT_ROOT"] = preg_replace("/wwwroot.*$/i","wwwroot",$PATH_TRANSLATED); This assum

[PHP-WIN] MSSQL Functions Again

2001-02-08 Thread Toby Miller
Hey all, Actually, Frank might know this, but I was wondering if anyone is using the MSSQL functions on Win2000 instead of NT. If so, are you using an installation of MSSQL Server to allow your MSSQL functions to work or did you just copy the DLL's (like Frank suggested in my earlier post). I

[PHP-WIN] MSSQL Functions

2001-02-07 Thread Toby Miller
Hey all, I've got a question about using the MSSQL Functions. The only way I've been able to use them is to install Microsoft SQL Client on the web server. Is there any way to get around this to use the MSSQL Functions without installing a copy of Microsoft SQL Client? Right now I am using the

Re: [PHP-WIN] COUNT(*) fails in PHP3

2001-02-07 Thread Toby Miller
Unfortunately, I don't have PHP3 on Windows, but it works fine for me in PHP3 on Linux and PHP4 on both Windows and Linux. This is also testing with both MySQL and MSSQL in all three scenarios. - Original Message - From: "Piotr Fetras" <[EMAIL PROTECTED]> To: "<"php-windows"" <[EMAIL PROT

Re: [PHP-WIN] Problem with flush() on win machine

2001-02-02 Thread Toby Miller
Jonat, I'm not sure what the flush problem could be, but you have an endless while loop in your code. $trexxRulez never exits out. This shouldn't work in Linux or Windows. Can you give us a URL where this is actually working? Toby - Original Message - From: "Jonat Brander" <[EMAIL PROTE

Re: [PHP-WIN] Nulls in database

2001-02-01 Thread Toby Miller
You are trying to compare for a value that does not match, correct? Try this: SELECT [ID], [Project Name], [Start Construction Date], [Actual Completion Date] FROM common WHERE [Start Construction Date] <> '' OR [Actual Completion Date] <> '' Also, your query was saying if [Start Construction Da

Re: [PHP-WIN] Newbie - Help!!!!!

2001-02-01 Thread Toby Miller
WIN] Newbie - Help! > If there was an error with the DB connection, then the 'or die' clause should > pick it up? > If nothing has changed between the IIS nad Apache implementation then I don't > know what is happenning > If however you have changed the table struc

Re: [PHP-WIN] Newbie - Help!!!!!

2001-02-01 Thread Toby Miller
There seems to be a problem with your database connection. Can we see the header include? -Toby - Original Message - From: "Robert Trembath" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 01, 2001 10:20 AM Subject: [PHP-WIN] Newbie - Help! I don't understand