[PHP-DB] joining 2 tables - help please..

2002-09-18 Thread rainydays_sunshine
I have 2 tables as follows: product table | product_id | name | category_id | 1| coffee| 2 | 3| orange|1 | 5| mango|1 | 2| tea |2 and category table |category_id | category_name | |2| drinks

[PHP-DB] RE: regarding session

2002-09-18 Thread Smita Manohar
Graeme , Terry : thnx for reply :) now some picture is clear in my head regarding session handling. i did the stuff as u suggested. but getting error msg as , Warning: Cannot send session cache limiter - headers already sent (output started at c:\phpdev\www\mediawatch\mast_maint.php:9) in c:\phpd

RE: [PHP-DB] RE: regarding session

2002-09-18 Thread John Holmes
You must call session_start() _before_ any output is sent to the browser. This means before or any other output at all. ---John Holmes... > -Original Message- > From: Smita Manohar [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 18, 2002 6:09 AM > To: [EMAIL PROTECTED] > Subject

Re: [PHP-DB] joining 2 tables - help please..

2002-09-18 Thread Ignatius Reilly
Try: SELECT C.category_name, SUM( IF( ISNULL( P.product_ID ),0, 1) ) AS total FROM category AS C LEFT JOIN product AS P ON C.category_ID = P.category_ID GROUP BY C.category_ID Ignatius - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL

[PHP-DB] configuration

2002-09-18 Thread roslyn jose
hi, could u guys help me on how i should configure postgresql support in php. thanks. roslyn - Do you Yahoo!? Yahoo! News - Today's headlines

Re: [PHP-DB] Selecting one random column from MySQL

2002-09-18 Thread Andrey Sosnitsky
Hello, Shoulder. You wrote 18 ñåíòÿáðÿ 2002 ã., 5:20:55: Do you mean random row? So, try this $query = "SELECT * FROM table ORDER BY RAND() LIMIT 1"; $result = mysql_query($query); etc... StSF> Hi all, StSF> How can I select one random column from a MySQL table? StSF> Thanks, Taj

Re: [PHP-DB] configuration

2002-09-18 Thread Rafael Mueller
cd /usr/local/php4.2.x ./configure --with-pgsql --others_options []'s On Wed, 18 Sep 2002, roslyn jose wrote: > > hi, > > could u guys help me on how i should configure postgresql support in php. thanks. > > roslyn > > > > - > Do you Yahoo!? > Yahoo! News -

[PHP-DB] more on config

2002-09-18 Thread roslyn jose
hi, thanks for that reply, but the other_options, i need to configure it for gd, apache, postgresql and a few others and also each of these have differnt versions, so whats the exact command i need to follow. thanks roslyn - Do you Yahoo!? Yahoo! News - Toda

Re: [PHP-DB] more on config

2002-09-18 Thread Rafael Mueller
http://www.php.net/manual/en/install.apache.php http://www.php.net/manual/en/installation.php#install.general http://www.php.net/manual/en/install.linux.php http://www.boutell.com/gd/manual1.8.4.html ... ./configure --with-pgsql --with-apache=/path/to/apache --with-gd=/opt/gd []'s On Wed, 18 Se

[PHP-DB] file timout

2002-09-18 Thread Ryan Jameson (USA)
Does anyone know a good way to have the file function timeout quickly if it cannot find the file requested? I've tried set_time_limit (5) but for some reason it still sits for about 30 seconds before failing. Thanks. <>< Ryan -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, v

[PHP-DB] Parse error when using global

2002-09-18 Thread accepto
Hallo everybody, I do have a little problem and can't come up with an answer. Can somebody help me? I would like to use two variables in a function, $database_viva and $viva. $database_viva = "test"; $username_viva = ""; $password_viva = ""; $viva = mysql_pconnect($hostname_viva, $usern

[PHP-DB] php and fonts

2002-09-18 Thread Smita Manohar
hello all... in my phpscript user posts news text. they copy it from other sites (news sites) can paste in the form and submit. the script stores that news in blob field in mysql table. when i display that news in page say, news.php i want it should be displyed in the font which was in the or

[PHP-DB] magic_quotes_gpc?

2002-09-18 Thread Jason Vincent
Hello, New PHP (long time PERL user) here. I am using an Access database - yeah I know Access is crap, but I have no choice. Anyway, it seems that this magic backslash thing is unavoidable. As I understand it, I can shut it off at the .ini level, but I am running this app on a hosted s

[PHP-DB] how to hide my code?

2002-09-18 Thread Bo
I wrote a block of javascript code, what is the easiest way to hide my codes? Thank you. Bo -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] how to hide my code?

2002-09-18 Thread Hutchins, Richard
There are javascripts out there to disable the View Source option when the user right clicks on your page. Disables for the whole page though, not just a section of your code. Search here: http://search.internet.com/www.javascriptsource.com Thing is, scripts like those are easily defeated and the

Re: [PHP-DB] magic_quotes_gpc?

2002-09-18 Thread Adam Williams
www.php.net/stripslashes Adam On Wed, 18 Sep 2002, Jason Vincent wrote: > Hello, > > New PHP (long time PERL user) here. I am using an Access database - > yeah I know Access is crap, but I have no choice. Anyway, it seems that > this magic backslash thing is unav

RE: [PHP-DB] how to hide my code?

2002-09-18 Thread Ryan Jameson (USA)
create a seperate file myJavaScript.php and inside that file have something like this: my javaScript functions Then in your page use This works really well!!! <>< Ryan -Original Message- From: Hutchins, Richard [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 12:

RE: [PHP-DB] how to hide my code?

2002-09-18 Thread Ryan Jameson (USA)
http://www.php.net/manual/en/reserved.variables.php#reserved.variables.server -Original Message- From: Hutchins, Richard [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 18, 2002 1:11 PM To: Ryan Jameson (USA) Subject: RE: [PHP-DB] how to hide my code? Ryan, Where can I find info

[PHP-DB] PHP4 OCI8 SELECT from view BUG

2002-09-18 Thread notoriousvic_ca
Hi I am a programmer and I just started using PHP4. I have noticed that when I retreive values from a view into an associated array using OCI8, I array will not carry the correct field name For example if I create a view like : create or replace view view_specimen_details as SELECT a.ITEM_C

[PHP-DB] set_magic_quotes_runtime???

2002-09-18 Thread Jason Vincent
So what does set_magic_quotes_runtime(0) do then??? Will it shut off the automatic backslashing of single quotes at run time or not? (it certainly doesn't seem to) Anyone? J

Re: [PHP-DB] set_magic_quotes_runtime???

2002-09-18 Thread Paul Burney
on 9/18/02 8:55 PM, Jason Vincent at [EMAIL PROTECTED] appended the following bits to my mbox: > So what does set_magic_quotes_runtime(0) do then??? Will it shut off the > automatic backslashing of single quotes at run time or not? (it certainly > doesn't seem to) If I recall correctly, that o

Re: [PHP-DB] Visitor tracking...

2002-09-18 Thread leo g. divinagracia iii
Aaron Wolski wrote: > Hi All, > > Couple questions on logic and perhaps a useable solution to visitor > tracking. > > My firm has redesigned a site for a cliet. In this new site we are also > exploring some Search Engine placement and bidding techniques to > seriously bolster his activity and bu

RE: [PHP-DB] RE: regarding session

2002-09-18 Thread Smita Manohar
>From: "John Holmes" <[EMAIL PROTECTED]> >Reply-To: <[EMAIL PROTECTED]> >To: "'Smita Manohar'" <[EMAIL PROTECTED]>,<[EMAIL PROTECTED]> >Subject: RE: [PHP-DB] RE: regarding session >Date: Wed, 18 Sep 2002 06:58:17 -0400 > >You must call session_start() _before_ any output is sent to the >browser

RE: [PHP-DB] RE: regarding session

2002-09-18 Thread Smita Manohar
thanks ! its working fine now. but again one question. (simple one , but i couldnt find the answer ) :-( after user logs in, on each page i check whether valid session has been created. if not, then i wish to redirect to the login page. doing as, if(!session_is_registered("UserID")) { heade