Re: [PHP] Advantages of php

2001-11-19 Thread Adrian D'Costa
1 PM 11/17/2001 +0530, Adrian D'Costa wrote: > >Hi, > > > >Is there somewhere on the PHP site that give a list of advantages, speed, > >etc in comparsion with other similar programs. I have a client that is in > >ASP and would like to move to PHP and need this info.

[PHP] Advantages of php

2001-11-17 Thread Adrian D'Costa
Hi, Is there somewhere on the PHP site that give a list of advantages, speed, etc in comparsion with other similar programs. I have a client that is in ASP and would like to move to PHP and need this info. Thanks Adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mai

Re: [PHP] sending email to php script

2001-11-02 Thread Adrian D'Costa
On Fri, 2 Nov 2001, David Robley wrote: > > > > What if we need both version?? > > > > > > There's nothing stopping you running both. > > > > How do you compile it for both? > > > > Adrian > > To do the cgi compile, use all the configure values you need EXCEPT > anything apache related. The com

RE: [PHP] sending email to php script

2001-11-01 Thread Adrian D'Costa
On Thu, 1 Nov 2001, Jason Murray wrote: > > > You'll also need to compile php as a standalone, and put as > > > the first line of your php script > > > > > > #!/path/to/php -q > > > > What if we need both version?? > > There's nothing stopping you running both. How do you compile it for both

Re: [PHP] sending email to php script

2001-10-31 Thread Adrian D'Costa
On Mon, 29 Oct 2001, David Robley wrote: > On Sat, 27 Oct 2001 03:23, JSheble wrote: > > A while ago an email came through here about how to parse out email > > message from a php script. The thing that was mostly of interest to me > > is the ability to send an email to a php script, I guess thr

[PHP] Re: images no appearing

2001-10-03 Thread Adrian D'Costa
TECTED] address is an endangered species -- Use > [EMAIL PROTECTED] > Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm > Volunteer a little time: http://chatmusic.com/volunteer.htm > - Original Message - > From: Adrian D'Costa <[EMAIL PROTEC

Re: [PHP] Why this error to this newsgroup?

2001-09-24 Thread Adrian D'Costa
This is the same error I get. The question is why the mails is going to: mail.aaz-netmarketing.com when it should be going to : pb1.pair.com Adrian On Sat, 22 Sep 2001, hvm wrote: > Hi I have the same and I don't know if some one even get my questions, I > never get a response. > Maybe the que

[PHP] Undelivered Mail Returned to Sender (fwd)

2001-09-24 Thread Adrian D'Costa
-- Forwarded message -- Date: Mon, 24 Sep 2001 08:35:03 +0200 (CEST) From: Mail Delivery System <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Undelivered Mail Returned to Sender This is the Postfix program at host mail.aaz-netmarketing.com. I'm sorry to have to inform you

[PHP] images no appearing

2001-09-24 Thread Adrian D'Costa
Hi, I wrote a php script to create a dynamic graph (image/jpeg). On my development system the image appears on my website it gives Image/Jpeg support not compiled. Below are the config settings: My system: Configure Command ^@ './configure' '--prefix=/usr' ^@'--with-confi

[PHP] images no appearing

2001-09-23 Thread Adrian D'Costa
Hi, I wrote a php script to create a dynamic graph (image/jpeg). On my development system the image appears on my website it gives Image/Jpeg support not compiled. Below are the config settings: My system: Configure Command ^@ './configure' '--prefix=/usr' ^@'--with-config

[PHP] some hyper links

2001-09-19 Thread Adrian D'Costa
Hi, I have two table: policies: id ==> auto increment, primary key policy topics id ==> auto increment, primary key topic polid ==> linked from policies In the policies table I have 72 records in the topics 325. What I am trying to do is to display all the 72 record for the polici

Re: [PHP] R: viewer analysis

2001-09-16 Thread Adrian D'Costa
On Fri, 14 Sep 2001, GATop wrote: > Is there more like that? Like what :) Adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

RE: [PHP] limiting rows and pages like google

2001-09-14 Thread Adrian D'Costa
are 30 > total rows). Conversely, if you do a single query without the limit, > then you're doing a slower search (limiting a search is way faster), and > I'm not sure of the implications of the full result set residing > serverside - maybe higher memory requirements. So wha

[PHP] viewer analysis

2001-09-14 Thread Adrian D'Costa
Hi, I trying to write a php program using mysql to dump the data to capture the following details: 1. From where the viewer is coming. Easy getting the remote address 2. Which file they are viewing. Ok think I can handle this. 3. How long they are on that particlular page? 4.

Re: [PHP] limiting rows and pages like google -- again

2001-09-13 Thread Adrian D'Costa
On Thu, 13 Sep 2001, Helen wrote: > > The logic would be to check if the script is called the first time, then > > the sql statement would be select travel.*, city.city from travel, city > > where travel.cityid=city.id limit 0,20. > > The second time or based on what has been selected on the page

[PHP] Re: mail problem

2001-09-13 Thread Adrian D'Costa
On Thu, 13 Sep 2001, Peter Houchin Sun Rentals STR Manager wrote: > php.ini mail related line: > sendmail_path = sendmail -t -i ;for unix only, may supply > arguments as well (default is 'sendmail -t -i') I suggest you put the full path in the sendmai path. Adrian -- PHP Ge

[PHP] limiting rows and pages like google -- again

2001-09-12 Thread Adrian D'Costa
Hi, I am trying to find out the the best way to do the following: I have a script that select records from a table. The problem is that I need to limit the rows to 20. I know that I can use limit 20. But what I want to do is give the view a link to the next 20 till all the records are shown.

[PHP] limiting rows and pages like google

2001-09-12 Thread Adrian D'Costa
Hi, I am trying to find out the the best way to do the following: I have a script that select records from a table. The problem is that I need to limit the rows to 20. I know that I can use limit 20. But what I want to do is give the view a link to the next 20 till all the records are shown.

[PHP] Re: how do I?

2001-09-06 Thread Adrian D'Costa
e if text in the table is a single line. If it is multiply lines then it does not display, but in the source code of the browser it is there, except flashing. Adrian > > > "Adrian D'Costa" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news

[PHP] how do I?

2001-09-05 Thread Adrian D'Costa
Hi, I am trying to write a dynamic help module based on a mysql database. I am using Javascript and PHP to do this. This is part of my script (both java and php)