[PHP] Syntax for attaching a PDF file

2002-03-11 Thread Todd Cary
I am not sure of the correct syntax for attaching a PDF file to an email message using mail(). Any help is greatly appreciated since the documents are confusing for me. Todd -- Dr. Todd Cary Ariste Software 707-773-4523 [EMAIL PROTECTED] It is a worthy thing to fight for one's freedom

[PHP] Re: A stupid question...

2002-03-10 Thread Cary
elaborate a little I am sure that one of us could help you out. Cary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sendmail and setting From

2002-02-19 Thread Todd Cary
Greg - Many thanks! That is what I am doing now and I was hoping that I could do the same in Linux as I do with the NT server: have a default in a conf file. Todd -- Dr. Todd Cary Ariste Software 707-773-4523 [EMAIL PROTECTED] It is a worthy thing to fight for one's freedom; it is another

[PHP] Sendmail and setting From

2002-02-18 Thread Todd Cary
I have RH 7.2 with Apache and PHP. The mail() function in PHP worked out of the box!! Fantastic! The setting in the php.ini is being over written with Apache. Where can I change the setting? Many thanks... -- Dr. Todd Cary Ariste Software 707-773-4523 [EMAIL PROTECTED] It is a worthy

Re: [PHP] Sendmail and setting From

2002-02-18 Thread Todd Cary
prefer not to have to put it into every message. However, unless I do, my messages have From: Apache. Hopefully, I am making some sense.. Todd -- Dr. Todd Cary Ariste Software 707-773-4523 [EMAIL PROTECTED] It is a worthy thing to fight for one's freedom; it is another sight finer

[PHP] Report generator for Linux

2002-02-17 Thread Todd Cary
I use Interbase on the Linux and NT servers and I would like to have a report generator that can take the results of a query and produce that can be converted into a PDF file. Does anyone have some suggestions on how I can best achieve this goal? Todd -- Dr. Todd Cary Ariste Software 707-773

[PHP] broken imap client?

2002-01-29 Thread Cary Mathews
support. Can someone help me understand what I am doing wrong? Thanks in advance, Cary -- 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] broken imap client?

2002-01-29 Thread Cary Mathews
problems. I'll try moving those *.h files up a directory and try once more...[sigh] [snip some rant about the c-client being broken... ;-)] the c-client libs arnt broken :) I'll take your word for it. But as for getting it to work... --Cary -- PHP General Mailing List (http://www.php.net

Re: [PHP] Uploading a file

2002-01-25 Thread Todd Cary
in the Apache that needs to be set for file uploads? Many thanks... Todd -- Dr. Todd Cary Ariste Software Petaluma, CA 94952 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] How can the Surfer download

2002-01-24 Thread Todd Cary
When the surfer presses a button, I want a pre-determined file to be downloaded by the surfer - the box to come up on the surfer's browser: Open or save Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] How can the Surfer download

2002-01-24 Thread Todd Cary
Jason - Then in your file download.php, have a single statement using the header() function to redirect to the file that is to be downloaded. What is the syntax for the header() function? Many thanks... Todd -- Dr. Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List

Re: [PHP] How can the Surfer download

2002-01-24 Thread Todd Cary
header to supply a recommended filename and force the browser to display the save dialog. ? php header(Content-type: application/pdf); header(Content-Disposition: attachment; filename=downloaded.pdf); /* ... output pdf file ... */ -- Todd Cary Ariste Software [EMAIL PROTECTED

Re: [PHP] How can the Surfer download

2002-01-24 Thread Todd Cary
); header(Content-Length: $len); header(Content-Disposition: attachment; filename=test.pdf); readfile(test.pdf); ? -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] How can the Surfer download

2002-01-24 Thread Todd Cary
Jason and Daniel - Maybe this is a cop out, however it is working. Comments welcomed.. html head ? print('meta http-equiv=refresh content=0; URL=docs/' . $filename . ''); ? titleSendfile/title /head ... -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General

Re: [PHP] Uploading a file

2002-01-24 Thread Todd Cary
I am not well versed in Apache. Is there so parameter that I may not have sett correctly? Something that would cause the problen I am having? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] I lost the message...

2002-01-23 Thread Todd Cary
I am embarrassed to say that I lost the anser to my question on the syntax to get a list of all of the files in a specified directory matching a sertain criteria. Anyone willing to give me another chance? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] I lost the message...

2002-01-23 Thread Todd Cary
As I recall, I need to use the file function e.g. fopen(). Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

Re: [PHP] I lost the message...

2002-01-23 Thread Todd Cary
This seems to work. Is there a better way? chdir(/home/docvault); $dir = dir(.); $dir-rewind(); while ($file=$dir-read()) { if (($file != .) ($file != ..)) { $Filelist[] = $file; } } $dir-close(); Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP

[PHP] How can the Surfer download

2002-01-23 Thread Todd Cary
What is the syntax to give the surfer an opportunity to download a file? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] imap problems

2002-01-19 Thread Cary Mathews
be greatly appreciated! Cary -- 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] dynamic module or static?

2002-01-17 Thread Cary Mathews
else who gave their input. BTW, Erik, have you gotten mod_perl working yet? I'd be intrested in knowing how that turns out. Kindest regards, Cary Mathews -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] dynamic module or static?

2002-01-16 Thread Cary Mathews
me! Cary On Wed, 16 Jan 2002, Bhavin Modi wrote: Date: Wed, 16 Jan 2002 15:52:52 +0530 From: Bhavin Modi [EMAIL PROTECTED] To: Cary Mathews [EMAIL PROTECTED] Subject: Re: [PHP] dynamic module or static? Have you done the following in your httpd.conf ? AddModulemod_php4.c I had

[PHP] dynamic module or static?

2002-01-15 Thread Cary Mathews
, and still no luck. If I comment out the LoadModule directive, it starts, but my browser asks if I want to download the php page instead of displaying it. Has anyone encountered this before? Cary Mathews -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Apache and /

2002-01-09 Thread Todd Cary
I forgot the parameter to change in httpd.conf so when the trailing / is left off, the index.html will be executed. Anyone know the parameter? Many thanks Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

Re: [PHP] PHP 4.4.1 and Interbase

2002-01-08 Thread Todd Cary
I rolled back to php-4.0.6 and all works fine. http://209.204.172.137/testgdb.php and http://209.204.172.137/testphp.php H? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Re: Need some Linux/Apache help

2002-01-01 Thread Todd Cary
When I run the make after a successful configure, I get the following errors: stub.lo: file not recognized: File truncated collect2: ld returned 1 exit status make[1]: *** [libphp4.la] Error 1 make: *** [all-recursive] Error 1 Any suggestions on how I may resolve this? Todd -- Todd Cary

Re: [PHP] Re: Need some Linux/Apache help

2002-01-01 Thread Todd Cary
David - Try Cross posting to: linux-admin list How do I join the list? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

Re: [PHP] Re: Need some Linux/Apache help

2002-01-01 Thread Todd Cary
not mind, I'll send directly. Probably not that much different from Object Pascal (Delphi 5/6). Again, Happy New Year to you all, *and* many thanks for the help.. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] Listing files

2001-12-31 Thread Todd Cary
for any help in getting the correct syntax to do this.. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

Re: [PHP] Re: Need some Linux/Apache help

2001-12-31 Thread Todd Cary
to intall it and untar the resulting file, but from there on I am lost when it comes to setting up the configure. Sorry for such basic questions, but my Windows background is certainly a liability - not a help! Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] Re: Need some Linux/Apache help

2001-12-31 Thread Todd Cary
goes to the file *except* the errors. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Need some Linux/Apache help

2001-12-30 Thread Todd Cary
phoinfo() and it use to. What have I missed. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] PHP4 and IB SS 6.01

2001-12-24 Thread Todd Cary
Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] How to compile Apache/PHP

2001-12-23 Thread Todd Cary
extensions. Many thanks.. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] PHP/Apache/Interbase/Linux

2001-12-11 Thread Todd Cary
Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Branching to a page

2001-12-11 Thread Todd Cary
*/ if (!empty($cancel)) { $http = new http; $fp = $http-http_fget($server, $path . redirect.php,); if($fp) { print 'BASE HREF=' . $url . 'redirect.phpp'; fpassthru($fp); exit; } } Many thanks. Todd -- Todd Cary Ariste Software [EMAIL

[PHP] Accessing PHP archieve

2001-12-11 Thread Todd Cary
Is there an archieve for this list server? If so, I do I access it? Many thanks.. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

[PHP] Opening a socket

2001-11-12 Thread Todd Cary
Content-type: application/x-www-form-urlencoded Content-length: 54 req_email=todd%40aristesoftware.comreq_regno=9991 Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[PHP] Trailing / and Apache

2001-10-29 Thread Todd Cary
-- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Share located on another computer

2001-10-05 Thread Todd Cary
Can PHP work with a Share on another computer or do the scripts have to be on the same computer as IIS/Apache? When I put the scripts into a Shared directory, I get a CGI error. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] php and Interbase

2001-08-30 Thread Todd Cary
Yes! I use it as my routine DB. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Anyone using Interbase/Linux?

2001-08-14 Thread Todd Cary
I am having a problem starting Interbase 6.0 on RH 7.1. Anyone using Interbase on Red hat 7.1? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

[PHP] Starting Interbase on RH Linux

2001-08-13 Thread Todd Cary
I am new to Linux and I have installed RH 7.1 along with Apache, PHP, and Interbase 6.0. I can start Apache, but how do I start Interbase? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] watermarks

2001-07-07 Thread Todd Cary
I am using watermarks on the photos I put on the net ( http://www.floatographs.com), except I do it before I send them up. My procedure is to use some Delphi code I wrote implementing some grpahic primitives. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List

[PHP] PDF shareware/GNU

2001-07-06 Thread Todd Cary
Are there any Shareware libraries for handling PDF? The PdfLib is great, but that can get somewhat expensive. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] Ghostscript and PHP

2001-07-04 Thread Todd Cary
Can Ghostscript be used with PHP? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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] How to prevent people from downloading images

2001-07-04 Thread Todd Cary
At http://www.floatographs.com , I reduce the resolution and put a watermark in the JPEG. Not very clever, but it works. Todd P.S. The site is using PHP and Interbase plus a lot of help from all of you folks!! Many thanks -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General

[PHP] Best way to put text on image

2001-07-04 Thread Todd Cary
If I have a JPEG image, what is the best way to put text or another image at a certain place using the gd library? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

[PHP] Pdf as image

2001-07-03 Thread Todd Cary
Is there a way to convert a PDF file into a TIFF image without purchasing PdfLib? I would like to take a PDF file and use it as a background upon which I would place some other images. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

[PHP] Output an image stream?

2001-06-23 Thread Todd Cary
I have created a barcode as an image stream ($im). Now, I want to output it in HTML to a particular row and column on a form. Do I have to save it as a file so that I can use the routine img src=xx or is there a way to directly output the stream? Many thanks... Todd -- Todd Cary Ariste

[PHP] Creating formatted documents

2001-06-23 Thread Todd Cary
, is there some code available that can give me an idea on how to do it? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] Refreshing browser

2001-06-21 Thread Todd Cary
to the surfer that they are in secure mode. Also, with Netscape, the relative address does not work after the redirect (e.g. src=images/floatoheader.gif). Is there a way to update the browser so that it has last re-direct? Many thanks. -- Todd Cary Ariste Software [EMAIL PROTECTED

[PHP] Thank you to all

2001-06-18 Thread Todd Cary
source along in their own applications!!). So, thank you for providing me with the tools to create a rather sophisticated Web application with no prior experience using PHP. In gratitude Todd -- Todd Cary Ariste Software [EMAIL PROTECTED]

[PHP] Syntax for CURL

2001-05-21 Thread Todd Cary
I need to send a POST string to a HTTPS server and receive the returned string. Does anyone know the correct syntax for this? I have looked at the HELP a www.php.net; however, I am not completely clear on what I need to put into the curl_setopt(). Todd -- Todd Cary Ariste Software [EMAIL

[PHP] HTTP socket connection

2001-05-18 Thread Todd Cary
connection? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Receiving a text stream

2001-05-13 Thread Todd Cary
they are in a browser like EI or Netscape? Does it have to be written to a file first? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] Re-directing

2001-05-12 Thread Todd Cary
In my Index.html, what do I write so that the Surfer goes to my Start.Php? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] Shopping cart search

2001-05-10 Thread Todd Cary
Can someone pass on the URL for searching for PHP shopping cart programs and shopping cart related questions. Many thanks... Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] Shopping cart search

2001-05-10 Thread Todd Cary
Many thanks to all. Exactly what I need!! Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] Setting up mail() for WinXX

2001-03-20 Thread Todd Cary
Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Mail and a DSL Router

2001-03-19 Thread Todd Cary
= 192.168.0.11 The router has port 25 set to 192.168.0.11. Has anyone had experience with this configuration? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] Graphic plugins?

2001-03-12 Thread Todd Cary
Is there a plugin for browsers that will give the user the ability to Zoom, rotate, and do other graphic functions with images? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Opening/closing a DB

2001-03-10 Thread Todd Cary
e I forget to do this in a place or two? Will the system eventually crash? I am not saying that I have intentually done this, *but* I may have left a DB open in a branching situation or just overlooked doing it in some place. Trying to learn.. Todd -- Todd Cary Ariste Software [EMAIL

[PHP] Sending pretty email

2001-03-10 Thread Todd Cary
I often receive email from commercial sites (e.g. ZDnet) that looks like a Web page. How can I do that with Sendmail in PHP? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Microtime math and display

2001-03-07 Thread Todd Cary
I want to check the time for queries. I have $starttime = getmicrotime(); $endtime = getmicrotime(); $delta = $endtime - $starttime; How do I display the seconds/milliseconds? Many thanks.. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http

Re: [PHP] PHP single user??

2001-03-01 Thread Todd Cary
instead. Todd Rick Hodger wrote: Todd Cary [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I am having a very strange problem: PHP 4.0.4 on a NT 4 platform with IIS 5 is only allowing one surfer to do a DB Select. If the DB is busy with the fi

[PHP] PHP/NT4/IIS5 problem

2001-02-27 Thread Todd Cary
I have PHP 4.0.4 running on my Win 2K with IIS5 - no problem! When I try to install the same PHP on a NT4 with SP6 and IIS5 I cannot get the Isapi filter to work - the status comes up as failed. Am I overlooking some simple? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP

[PHP] PHP single user??

2001-02-27 Thread Todd Cary
Cary Ariste Software [EMAIL PROTECTED] -- 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] Parsing a string

2001-02-23 Thread Todd Cary
Thanks all!! split() works like a champ!! Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] Need socket help!!!

2001-02-23 Thread Todd Cary
); /* Read the comma delimited string echoed back */ if($fp) { print 'BASE HREF="' . $url . '"p'; $result = fread($fp,1); fclose($fp); $tokenarray = split(",",$result); $response = $tokenarray[0]; // Response contains "1" which is

Re: [PHP] Apache and $HTTP_*_VARS

2001-02-19 Thread Todd Cary
-- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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] SMTP on IIS 5.0 Windows 2000 Pro

2001-02-19 Thread Todd Cary
This is how I have mine set with Win 2K: [mail function] SMTP= 192.172.0.1 ;for win32 only sendmail_from = [EMAIL PROTECTED] ;for win32 only -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] /n for PC Unix

2001-02-18 Thread Todd Cary
computer needs. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Apache and $HTTP_*_VARS

2001-02-18 Thread Todd Cary
-- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Text box

2001-02-17 Thread Todd Cary
ot;19" This is line 1. This is line 2. /textarea This will not: textarea name="textareaName" cols="62" rows="19" This is line 1. This is line 2. /textarea Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (h

[PHP] Viewing Memo fields

2001-02-09 Thread Todd Cary
I have a memo field in an Interbase DB and I am not sure how to display it. The line below produces garbage. print($row-STM_MEMO_TOP); Thanks for the help Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

[PHP] Dynamic Drop-down list

2001-02-08 Thread Todd Cary
. $val); }; echo("/SELECT"); }; }; -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] echo vs print

2001-02-08 Thread Todd Cary
I have "Profession PHP Programming" and I see that echo() and print() are used alomst interchangeably. When should each one be used? Also, I see "?php" and "?" used. Is there a preference? And how about "};" versus "}" to end a block? I se

[PHP] The meaning of myurl.myurl2.com

2001-02-06 Thread Todd Cary
What is the meaning of a URL that has two periods in it? For example http://www.myloc.aristesoftware.com Where does that take the sufer relative to the root of aristesoftware.com? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

[PHP] PHP and report generation

2001-02-01 Thread Todd Cary
I have a need to produce reports from data in a table *and* the reports need to look the same for all clients (e.g. PDF output). Are there any "report generators" that can be interfaced with with PHP that have a PDF output *or* do I need to "roll my own" for each task/report?

[PHP] Thumbnails and PHP

2001-01-29 Thread Todd Cary
zontal scroll bar and the img's go off to the left. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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]

[PHP] Thumbnails and PHP

2001-01-27 Thread Todd Cary
What is the best way to display thumbnail photos and their titles with HTML/PHP? Table? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] Session tracking question

2001-01-23 Thread Todd Cary
are OK, I then assign the Session ID. I realize there are many additions to the above that can make it more secure, but I am not dealing with sensitive data at this time. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma

[PHP] $HTTP_SERVER_VARS has only 1 value

2001-01-22 Thread Todd Cary
With Apache, $HTTP_SERVER_VARS only has the element, "PHP_SELF". What am I missing in my Apache setup? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-ma

Re: [PHP] $HTTP_SERVER_VARS has only 1 value

2001-01-22 Thread Todd Cary
query the correct array? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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] $HTTP_SERVER_VARS has only 1 value

2001-01-22 Thread Todd Cary
Teo - That works great for Apache but not for my ISAPI installation that is using IIS on a Win 2K platform. Is there a way to tell if I am using an ISAPI server or not? Otherwise I will put that in my parameter file. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General

[PHP] Installing Php/Apache/Win98

2001-01-20 Thread Todd Cary
for help? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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] XOR data encryption

2001-01-20 Thread Todd Cary
I have some Delphi code that uses the XOR, if that would help. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] Integer division

2001-01-19 Thread Todd Cary
What is the syntax for dividing 7 by 2 and getting 3; not 3.5? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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

[PHP] Calendar program

2001-01-18 Thread Todd Cary
Does a calendar program exist in PHP similar to Yahoo's program? (http://www.yahoo.com/calendar) Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] Calendar program

2001-01-18 Thread Todd Cary
Whooops! Wrong URL! http://calendar.yahoo.com Todd Todd Cary wrote: Does a calendar program exist in PHP similar to Yahoo's program? (http://www.yahoo.com/calendar) Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] win 2000 nt 5.0 and IIS

2001-01-16 Thread Todd Cary
:\php_active\ extension_dir = c:\php_active\ In the IIS (5.0) I add ".php" to the application mappings (c:\php_active\php4isapi.dll) in the Home Directory tab *and* in the ISAPI Filters. Stop and Start IIS and you should be up and running. Let me know if this helps Todd -- Todd C

Re: [PHP] PHP simulator

2001-01-10 Thread Todd Cary
f it will run. Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- 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] PHP simulator

2001-01-10 Thread Todd Cary
John - That sounds feasible. I have always associated Apache with Unix/Linux; not Windows The install of PHP 4.0.4 on my Win 2K was an absolute breeze running IIS 5. What is Apache like in the Windows envirnoment? Todd -- Todd Cary Ariste Software [EMAIL PROTECTED] -- PHP General

Re: [PHP] Passing a query result

2001-01-09 Thread Todd Cary
Toby - This is an Interbase DB... Todd Toby Butzon wrote: Working with what sort of database? Toby Butzon [ criticism spurs improvement ] - Original Message - From: "Todd Cary" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 09, 2001 10:47 P

Re: [PHP] Passing a query result

2001-01-09 Thread Todd Cary
, Toby Butzon [ criticism spurs improvement ] - Original Message - From: "Todd Cary" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 09, 2001 11:04 PM Subject: Re: [PHP] Passing a query result : Whoops! I forgot the code!! : snip -- Todd Cary Ariste Softw

<    1   2   3