Re: [PHP-DB] newbie help

2007-10-01 Thread nhadie
: [PHP-DB] newbie help This is definitely not the best advice in the world. The truth is you could staple your eye lids open and never blink, but it wouldn't be very beneficial. I highly suggest you invest some of your time in reading about databases and how relational databases work, and more

RE: [PHP-DB] newbie help

2007-10-01 Thread Daevid Vincent
solution is much simpler and could simply use a few glue tables and some flags so you know which table to look in (reseller, customer, etc) -Original Message- From: nhadie [mailto:[EMAIL PROTECTED] Sent: Thursday, September 27, 2007 8:31 PM To: php-db@lists.php.net Subject: [PHP-DB

Re: [PHP-DB] newbie help

2007-09-29 Thread Bob Chatman
data do you need to store for whatever your webapp does? -TG - Original Message - From: nhadie [EMAIL PROTECTED] To: php-db@lists.php.net Date: Fri, 28 Sep 2007 23:49:23 +0800 Subject: Re: [PHP-DB] newbie help Thanks for your reply, which solution would be faster and not put too

Re: [PHP-DB] newbie help

2007-09-29 Thread TG
. Always willing to learn new things if they are, indeed, better. -TG - Original Message - From: Bob Chatman [EMAIL PROTECTED] To: TG [EMAIL PROTECTED] Cc: nhadie [EMAIL PROTECTED], php-db@lists.php.net Date: Fri, 28 Sep 2007 23:23:41 -0700 Subject: Re: [PHP-DB] newbie help

Re: [PHP-DB] newbie help

2007-09-28 Thread nhadie
@lists.php.net Date: Fri, 28 Sep 2007 11:30:42 +0800 Subject: [PHP-DB] newbie help Hi All, I would like to setup a system something like this customer

Re: [PHP-DB] newbie help

2007-09-28 Thread TG
storing for your customers and your customer's customers? And what other data do you need to store for whatever your webapp does? -TG - Original Message - From: nhadie [EMAIL PROTECTED] To: php-db@lists.php.net Date: Fri, 28 Sep 2007 23:49:23 +0800 Subject: Re: [PHP-DB] newbie help

[PHP-DB] newbie help

2007-09-27 Thread nhadie
Hi All, I would like to setup a system something like this customer A /\

[PHP-DB] Newbie help

2003-09-06 Thread Nicola Hartland
I need some help to install and configure php I have tried downloading it a dozen times to configure it on Apache on xp but I cannot seem to get it to talk to my sql could someone provide me with an idiots guide to installing it please? Thanks in advance Nicci

RE: [PHP-DB] Newbie help

2003-09-06 Thread Rich Hutchins
http://www.php.net/manual/en/install.windows.php -Original Message- From: Nicola Hartland [mailto:[EMAIL PROTECTED] Sent: Saturday, September 06, 2003 4:29 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] Newbie help I need some help to install and configure php I have tried downloading

[PHP-DB] Newbie? - help inserting into firebird1.0

2002-03-26 Thread jon-david schlough
hi. i'm running: php4, firebird 1.0, and IIS all on win2k. i'm just getting started with php and firebird, so please forgive me if the error is obvious. i hunted around for examples, the best of which i've found btw is at http://www.ibphoenix.com/ibp_howto1.html - thought i did this right, i

[PHP-DB] Newbie help with cookies/sessions

2001-11-27 Thread Kevin Ruiz
I'm new to the PHP and Mysql world and I hope I have an problem that can be answered quickly. It seems simple but who knows. Whenever I try to use cookies or start a session I get the following error: Warning: open(/Temp\sess_ba759cb3d78fadb70745ca480f1d8661, O_RDWR) failed: m (2) in

RE: [PHP-DB] Newbie Help: Searching

2001-09-05 Thread Beau Lebens
field HTH Beau // -Original Message- // From: Devon [mailto:[EMAIL PROTECTED]] // Sent: Thursday, 6 September 2001 10:08 AM // To: [EMAIL PROTECTED] // Subject: [PHP-DB] Newbie Help: Searching // // // $Query = SELECT * FROM enet WHERE TechContact LIKE '%' AND // AdminContact // LIKE

[PHP-DB] newbie help required re oracle

2001-04-29 Thread Robert
Ok I have looked at the faq and cant find the answer, all I seem to find is the question, everywhere and no help for stupid people like me. I want to use my Oracle db from php and apache. I understand I have to compile php4 with oracle selected as an option. I have failed to do this, and need

[PHP-DB] newbie help

2001-03-25 Thread Matt Coyne
Hi all Having created a form that sends values to a php file that searches a table and returned results in the format specified I was on a high (little things I know!). However, this only works if I enter values into all fields on the form. How can I create an SQL query (mySQL) that will use

Re: [PHP-DB] newbie help

2001-03-25 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Matt Coyne) wrote: I have been trying to detect if the variable holds any value and then building a query by concatenating like this: if(!empty($foo)) { ... } $result=@mysql_query($concatsql, $connection) or die ("bugger...!");

Re: [PHP-DB] newbie help

2001-03-25 Thread Dean Bennett
It looks like your checks are reversed, and you end up with 2 ANDs between the sex and height clauses. Like someone else pointed out, it is very helpful to echo the generated query so you can see what you've got. A simpler solution, assuming that both fields are optional: $sql = "SELECT ref,

Re: [PHP-DB] newbie help

2001-03-25 Thread Matt Coyne
: : :t h r e e z e r o From: CC Zona [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Sun, 25 Mar 2001 10:39:23 -0800 To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] newbie help In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Matt Coyne) wrote: I have been