[PHP] Big problem....need help

2003-07-09 Thread phpu
I have a table like this: - product_id-mark_name-category_name - -1- aaa

Re: [PHP] Big problem....need help

2003-07-09 Thread Nicolas Costes
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le Mercredi 9 Juillet 2003 15:13, phpu a écrit : I have a table like this: .. $sql = SELECT * FROM products, category WHERE category.name_category=products.name_category and category_id=.$_GET['category_id'] ; When i choose the category

Re: [PHP] Big problem....need help

2003-07-09 Thread phpu
It isn't work. it gives me an error at this line. - Original Message - From: Nicolas Costes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 4:49 PM Subject: Re: [PHP] Big problemneed help -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le Mercredi 9 Juillet

Re: [PHP] Big problem....need help

2003-07-09 Thread Haseeb
:51:08 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Big problemneed help It isn't work. it gives me an error at this line. - Original Message - From: "Nicolas Costes" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 4:49 PM Subject: Re:

Re: [PHP] Big problem....need help

2003-07-09 Thread phpu
To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, July 10, 2003 8:18 AM Subject: Re: [PHP] Big problemneed help try like this $sql = SELECT * FROM products, category WHERE category.name_category=products.name_category and category_id

Re: [PHP] Big problem....need help

2003-07-09 Thread Mark
2 times Name ddd 1 times Please help with this one - Original Message - From: Haseeb To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, July 10, 2003 8:18 AM Subject: Re: [PHP] Big problemneed help

[PHP] BIG PROBLEm with headers

2002-03-08 Thread Krzysztof Kocjan
Hi I have problem with downloading any file from my site using IE 5.5 and HTTPS protocol. My php script works fine with Netscape 6.2 and HTTP/HTTPS protocols and with IE 5.5 but only with HTTP protocol. I can't find problem. I use Apache 1.3.20, PHP 4.0.6, mod_ssl 2.8.4 and OpenSSL 0.9.6 on

Re: [PHP] BIG PROBLEm with headers

2002-03-08 Thread Analysis Solutions
Hi Krzysiek: I have problem with downloading any file from my site using IE 5.5 and HTTPS protocol. My php script works fine with Netscape 6.2 and HTTP/HTTPS protocols and with IE 5.5 but only with HTTP protocol. I suspect your script has nothing to do with it. A while back, I had

Re: [PHP] BIG PROBLEm with headers

2002-03-08 Thread Erik Price
On Friday, March 8, 2002, at 01:06 PM, Analysis Solutions wrote: I have problem with downloading any file from my site using IE 5.5 and HTTPS protocol. My php script works fine with Netscape 6.2 and HTTP/HTTPS protocols and with IE 5.5 but only with HTTP protocol. I suspect your script

[PHP] BIG problem...

2001-09-14 Thread Joaquin
Hello.. i speak spanish so.. i prefear the answer to this question will in spanixh: I have a problem... i do all correctily but.. iy happens.. a lot of times.. : bash-2.04# cd apache_1.3.19 bash-2.04# ./configure --prefix=/www Configuring for Apache, Version 1.3.19 + using installation path

RE: [PHP] BIG problem...

2001-09-14 Thread Nael Mohammad
To: [EMAIL PROTECTED] Subject: [PHP] BIG problem... Hello.. i speak spanish so.. i prefear the answer to this question will in spanixh: I have a problem... i do all correctily but.. iy happens.. a lot of times.. : bash-2.04# cd apache_1.3.19 bash-2.04# ./configure --prefix=/www Configuring

RE: [PHP] Big Problem

2001-04-26 Thread Michael Geier
in php.ini, put /var/qmail/bin/qmail-inject into sendmail_path -Original Message- From: Thomas Booms [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 25, 2001 6:48 PM To: [EMAIL PROTECTED] Subject: [PHP] Big Problem Hi all, I'm using on my new machine (SuSE 7.0) PHP4. In one PHP4

[PHP] Big Problem

2001-04-25 Thread Thomas Booms
Hi all, I'm using on my new machine (SuSE 7.0) PHP4. In one PHP4-Script I use the mail-Function. But my /var/log/mail (qmail) does not give any entry for this mail. Is there a bug? In PHP3 it was all running good. I have a serious problem here because this is a customers site! Thanks in

Re: [PHP] Big Problem

2001-04-25 Thread Mark Maggelet
On Thu, 26 Apr 2001 01:48:13 +0200, Thomas Booms ([EMAIL PROTECTED]) wrote: Hi all, I'm using on my new machine (SuSE 7.0) PHP4. In one PHP4-Script I use the mail-Function. But my /var/log/mail (qmail) does not give any entry for this mail. Is there a bug? In PHP3 it was all running good. I

Re: [PHP] big problem

2001-03-22 Thread Tobias Talltorp
You need to set the permissions in that folder so that you can write. PHP acts like IUSR(computernmae), so set IUSR(computername) permission to write. This is Windows, by the way... // Tobias ""Salim Meethoo"" [EMAIL PROTECTED] wrote in message 99c90k$83u$[EMAIL

[PHP] big problem

2001-03-21 Thread Salim Meethoo
hello there, can somebody help me out with my scripts while running this: ? .. $myfile = fopen("data.txt","w"); .etc; ? i get the following error message: Warning: fopen("compteur","w") - Permission denied in

[PHP] BIG PROBLEM WITH SEARCH!!!!!!

2001-01-19 Thread Mike Yuen
I'm developing a site that requires people to sign up. During this time, we get their name, email, city, etc. There is also optional informational like (age, education) that they don't have to fill in. Now, the problem we have is we allow people search through the database using mostly the

Re: [PHP] BIG PROBLEM WITH SEARCH!!!!!!

2001-01-19 Thread Chris Lee
best way is this. if ($CID) $query[] = "CID = '$CID'"; if ($CUserName) $query[] = "CUserName = '$CUserName'"; if ($CAge) $query[] = "CAge = '$CAge'"; if ($CEducation) $query[] = "CEducation = '$CEducation'"; if (isset($query)) $query = "SELECT * FROM clients WHERE CID =