[PHP-DB] ever send SMIME Encrypted mail from PHP4 Mail() to an OUTLOOK EXPRESS user?

2001-08-14 Thread Ken Sommers
hi, has anyone ever sent SMIME Encrypted mail from a PHP4 script using the Mail() function to an MS OUTLOOK EXPRESS user? from a linux/apache/mysql/PHP4 Server? I would like to be able to send Secure emails (from within my PHP scripts) to the members of my site. After these members have gotten

Re: [PHP-DB] Transforming doc files into html

2001-08-06 Thread Ken Sommers
try the html editor Arachnophilia : http://www.arachnoid.com/arachnophilia/index.html How to make your own page (the easy way) You always have the option of creating a page from scratch, by entering the HTML tags on your own. But, even with a lot of predefined tags, this takes a long time, and

[PHP-DB] Submitting a form with the Enter button

2001-07-27 Thread Ken Sommers
IF I click this submit button: input type=submit name=submit_key value=send_key then (isset($submit_key) ) is TRUE IF i press my ENTER button instead of click it then (isset($submit_key) ) is FALSE.. is this normal behavior? Ken -- PHP Database Mailing List (http://www.php.net/) To

[PHP-DB] anyone use the PHP dl() functiion?

2001-07-17 Thread Ken Sommers
Hello, does anyone use the PHP dl() function? to dynamically load modules at run time? how does it work for you? Ken -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

[PHP-DB] FOPEN () communication

2001-07-16 Thread Ken Sommers
PHP manual says: fopen fopen -- Opens file or URL Description int fopen (string filename, string mode [, int use_include_path]) If filename begins with http://; (not case sensitive), an HTTP 1.0 connection is opened to the specified server, the page is requested using the HTTP GET method, and a

[PHP-DB] the body of the response

2001-07-16 Thread Ken Sommers
PHP manual says: fopen fopen -- Opens file or URL Description int fopen (string filename, string mode [, int use_include_path]) If filename begins with http://; (not case sensitive), an HTTP 1.0 connection is opened to the specified server, the page is requested using the HTTP GET method, and a

Re: [PHP-DB] the body of the response

2001-07-16 Thread Ken Sommers
code involved? thanks again, Ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List' [EMAIL PROTECTED] Sent: Monday, July 16, 2001 12:53 PM Subject: RE: [PHP-DB] the body of the response The body of the response

Re: [PHP-DB] the body of the response

2001-07-16 Thread Ken Sommers
Generate() is not a valid php function either. what is the secret code,?,and why is it secret? Ken Ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List' [EMAIL PROTECTED] Sent: Monday, July 16, 2001 1:34 PM Subject

Re: [PHP-DB] the body of the response

2001-07-16 Thread Ken Sommers
I looked up Output(); could not find output() function in PHP. what is the secret code to output? Ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List' [EMAIL PROTECTED] Sent: Monday, July 16, 2001 2:05 PM Subject: RE

[PHP-DB] remote database exchange

2001-07-16 Thread Ken Sommers
Is it possible to exchange data on remote databases in PHP mysql? Suppose I had a MUSIC database that you wanted your site visitors to be able to query,and it was OK with me because you had a MOVIE database that I wanted MY site visitors to be able to query, Could we swing this? what is the

Re: [PHP-DB] Re: the body of the response

2001-07-16 Thread Ken Sommers
PROTECTED] Sent: Monday, July 16, 2001 2:16 PM Subject: [PHP-DB] Re: the body of the response In article 008101c10e0f$379207e0$c844500c@zeospantera, [EMAIL PROTECTED] (Ken Sommers) wrote: PHP manual says: fopen fopen -- Opens file or URL Description int fopen (string filename, string

Re: [PHP-DB] remote database exchange

2001-07-16 Thread Ken Sommers
Suppose I Need to get Vendor prices from a very large remote (Oracle) price list . They probably don't have PHP installed. What are my options? Ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List' [EMAIL PROTECTED] Sent

Re: [PHP-DB] remote database exchange

2001-07-16 Thread Ken Sommers
PROTECTED] Sent: Monday, July 16, 2001 4:33 PM Subject: Re: [PHP-DB] remote database exchange In article 012601c10e4a$6c7a2ec0$b943500c@zeospantera, [EMAIL PROTECTED] (Ken Sommers) wrote: Suppose I Need to get Vendor prices from a very large remote (Oracle) price list . They probably don't

[PHP-DB] php/mysql/unix-Linux hosting with major DBMS support?

2001-07-16 Thread Ken Sommers
Any one use or know of a php/mysql/unix-Linux hosting company with PHP database support compiled with all the major DBMS's such as: mSQL MySQL PostgreSQL Sybase Oracle Informix MS-SQL Other ODBC Database I will need to use some or all of these DBMS PHP functions for remote access. thanks,,

Re: [PHP-DB] php/mysql/unix-Linux hosting with major DBMS support?

2001-07-16 Thread Ken Sommers
in library. See also the extension_dir configuration directive. --- thanks, Ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List' [EMAIL PROTECTED] Sent: Monday, July 16, 2001 6:01 PM Subject: RE: [PHP-DB] php/mysql/unix

Re: [PHP-DB] php/mysql/unix-Linux hosting with major DBMS support?

2001-07-16 Thread Ken Sommers
[9] = db [10] = Calendar [11] = bcmath ) so would dl(posix); dl(pgsql); work? Ken - Original Message - From: Ken Sommers [EMAIL PROTECTED] To: Matthew Loff [EMAIL PROTECTED]; 'PHP DB Mailing List' [EMAIL PROTECTED] Sent: Monday, July 16, 2001 7:11 PM Subject: Re: [PHP-DB] php

Re: [PHP-DB] php/mysql/unix-Linux hosting with major DBMS support?

2001-07-16 Thread Ken Sommers
); (on unix) dl(mysql.dll); (on windows); in the top of all the scripts that use mysql. --- end of FAQ I am hoping it is that simple. the dl() does it all.. please say it does..:) ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB

Re: [PHP-DB] php/mysql/unix-Linux hosting with major DBMS support?

2001-07-16 Thread Ken Sommers
to load mysql dynamicly in your scripts by inserting: dl(mysql.so); (on unix) dl(mysql.dll); (on windows); in the top of all the scripts that use mysql. --- end of FAQ I hope it is that simple.. Ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL

Re: [PHP-DB] php/mysql/unix-Linux hosting with major DBMS support?

2001-07-16 Thread Ken Sommers
??? tell us how it works.. Ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List' [EMAIL PROTECTED] Sent: Monday, July 16, 2001 9:18 PM Subject: RE: [PHP-DB] php/mysql/unix-Linux hosting with major DBMS support? dl

Re: [PHP-DB] php/mysql/unix-Linux hosting with major DBMS support?

2001-07-16 Thread Ken Sommers
,,just dl() it . Ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List' [EMAIL PROTECTED] Sent: Monday, July 16, 2001 9:56 PM Subject: RE: [PHP-DB] php/mysql/unix-Linux hosting with major DBMS support? You're correct

[PHP-DB] relay response transactions between PHP scripts on different servers

2001-07-15 Thread Ken Sommers
Hello, suppose you have a MOVIES table in your database on your server at your hosting company. Suppose I want some MOVIE info from your database..the titles of all the Robert Deniro movies released in the 1980's. Can I get the info and relay it back to the user on MY site? Would it be something

Re: [PHP-DB] relay response transactions between PHP scripts on different servers

2001-07-15 Thread Ken Sommers
Here's the part that confuses me: How does MovieResponder.php on your site get the results back to my site and back to the browser/user who is visiting my site..? ken - Original Message - From: Matthew Loff [EMAIL PROTECTED] To: 'Ken Sommers' [EMAIL PROTECTED]; 'PHP DB Mailing List

[PHP-DB] CGI or API installation?

2001-07-13 Thread Ken Sommers
Hello, How to tell if php4 is installed as a CGI or API module) installation? will phpinfo() tell me? thanks , Ken -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators,

Re: [PHP-DB] Thank you everyone :-)

2001-07-12 Thread Ken Sommers
Here,,Here I second that emotion Ken - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 12, 2001 12:52 PM Subject: [PHP-DB] Thank you everyone :-) Hi there, Thanks everyone for your help on this list - it really is a credit to the PHP community to

Re: [PHP-DB] Escaping

2001-07-12 Thread Ken Sommers
Please explain the dynamic link . is that in the documentation somewhere? Kne - Original Message - From: Rankin, Randy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 12, 2001 8:18 AM Subject: [PHP-DB] Escaping Hello, I have a table in a MySQL DB (RH Linux/Apache) with

Re: [PHP-DB] cookie problems

2001-07-11 Thread Ken Sommers
HI, my guess is is that the cookies will be killed the NEXT time you run this script. Ken - Original Message - From: Brad Lipovsky [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 10, 2001 11:24 PM Subject: [PHP-DB] cookie problems can anyone help me with this code? i cant

[PHP-DB] Are PHP user-defined functions recursive?

2001-07-11 Thread Ken Sommers
Manual says: --- Any valid PHP code may appear inside a function, even other functions and class definitions. In PHP 3, functions must be defined before they are referenced. No such requirement exists in PHP 4. PHP does not support function overloading, nor is it possible to undefine or

[PHP-DB] HTML question

2001-07-10 Thread Ken Sommers
Hello, pure HTML server question: images like (backgroundimage.jpg) stored on server at: /htdocs/www/img util.showpic.html is stored at : /htdocs/util/ How to use backgroundimage.jpg as background in util.showpic.html ? body background=/www/img/backgroundimage.jpg does not work.. what

Re: [PHP-DB] HTML question

2001-07-10 Thread Ken Sommers
HI, thanks not sure what the web root is. first dir I see on FTP is / so is that the root? and it contains a whole bunch of dirs including htdocs htdocs contains dirs: img (pics) util (utility html pages) www (main html pages) is there a way to refer to images in imgfrom html pages in

Re: [PHP-DB] HTML question

2001-07-10 Thread Ken Sommers
I Looked up the root..sorry it is DOCUMENT_ROOT .. /htdocs/www so I guess browsers think they are starting out at /htdocs/www and can't go below to get anything? so if I have phtml pages at /htdocs/util/ like www.util.consumergrapevine.org/showdatabases.php and images at /htdocs/www/img

[PHP-DB] Sub domain image referencing

2001-07-10 Thread Ken Sommers
Hello again, DOCUMENT_ROOT is.. /htdocs/www I have a php file ( showdatabases.php) in my subdomain area /htdocs/util/ it loads up just fine: and if you click it, you will see my database structure if you like..:) www.util.consumergrapevine.org/showdatabases.php I have images stored in

[PHP-DB] RE: trash last message ,this ones right I think

2001-07-10 Thread Ken Sommers
Hello again, DOCUMENT_ROOT is.. /htdocs/www I have a php file ( showdatabases.php) in my subdomain area /htdocs/util/ it loads up just fine: and if you click it, you will see my database structure if you like..:) http://util.consumergrapevine.org/showdatabases.php I have images stored in

Re: [PHP-DB] RE: trash last message ,this ones right I think

2001-07-10 Thread Ken Sommers
Thanks Tom and sorry I didn't mention it properly at first,, I was trying to analyse the problem. is it becuz the first part of the referenece being the ../ in body background=../www/img/background.jpg the ../ wants to take the browser into illegal territory above the root? because we are

Re: [PHP-DB] RE: trash last message ,this ones right I think

2001-07-10 Thread Ken Sommers
Thanks again, why couldn't the main root be /htdocs/ ? ken - Original Message - From: Tom Peck [EMAIL PROTECTED] To: Ken Sommers [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, July 10, 2001 6:05 PM Subject: Re: [PHP-DB] RE: trash last message ,this ones right I think Yes

[PHP-DB] Fw: Referential Integrity

2001-07-10 Thread Ken Sommers
- Original Message - From: Ken Sommers [EMAIL PROTECTED] To: pak [EMAIL PROTECTED] Sent: Tuesday, July 10, 2001 10:29 PM Subject: Re: Referential Integrity Ever play .,.Name that Code? I can delete those related rows in those 50 tables in about 5 lines.. but first you gotta keep

[PHP-DB] Fw: Referential Integrity

2001-07-10 Thread Ken Sommers
- Original Message - From: Ken Sommers [EMAIL PROTECTED] To: pak [EMAIL PROTECTED] Sent: Tuesday, July 10, 2001 10:46 PM Subject: Re: Referential Integrity I started learning PHP Mysql about 2 weeks ago. I'm still reading the tutorials. Hopefuly some experienced programmers in PHP

Re: [PHP-DB] Re: Homesite Server Mapping

2001-07-08 Thread Ken Sommers
, Ken Hugh Bothwell [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Ken Sommers [EMAIL PROTECTED] wrote in message 001001c107e2$b84ad5c0$aa42500c@zeospantera">news:001001c107e2$b84ad5c0$aa42500c@zeospantera... Has anyone successfully mapp

[PHP-DB] Can anyone recommend PHPLIB?

2001-07-08 Thread Ken Sommers
Can anyone recommend PHPLIB? for authentication and session management? or something else? thanks Ken -- PHP Database 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-DB] setting cookies so the cookie will expire when the user's session ends.

2001-07-05 Thread Ken Sommers
Hello, any way to set cookies so the cookie will expire when the user's session ends. IN PHP 4? Ken -- PHP Database 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:

Re: [PHP-DB] Authomatic Sorting

2001-07-05 Thread Ken Sommers
HI, Look into Optimizing the Table.. it seems to clean up the holes. Ken - Original Message - From: Wilmar Pérez [EMAIL PROTECTED] To: PHP List [EMAIL PROTECTED] Sent: Wednesday, July 04, 2001 1:50 PM Subject: [PHP-DB] Authomatic Sorting Hello guys I have the following two problems:

Re: [PHP-DB] Re: setting cookies so the cookie will expire when the user's session ends.

2001-07-05 Thread Ken Sommers
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi Ken, Do not specific the time in your cookie. ex: setcookie(usercookie,$username); once the user close the session, it will terminate the cookie. Kelvin. Ken Sommers [EMAIL PROTECTED] wrote in message 001701c1056d$2cb7c620$

Re: [PHP-DB] Authomatic Sorting

2001-07-04 Thread Ken Sommers
D you ever create an index on the primary key to speed things up?? ken - Original Message - From: Paul Burney [EMAIL PROTECTED] To: Wilmar Pérez [EMAIL PROTECTED]; PHP List [EMAIL PROTECTED] Sent: Wednesday, July 04, 2001 3:18 PM Subject: Re: [PHP-DB] Authomatic Sorting on 7/4/01 1:50

Re: [PHP-DB] kinda unrelated, but curious...

2001-07-03 Thread Ken Sommers
HI, I stumbled on this site http://www.missoulaweb.com/freelance.phtml see if you think it is cool.. Ken - Original Message - From: David Balatero [EMAIL PROTECTED] To: Szii [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, July 03, 2001 12:03 AM Subject: RE: [PHP-DB] kinda unrelated,

[PHP-DB] adding Carrol O'Conner in a form

2001-06-30 Thread Ken Sommers
HI, IF i add my name as Carol O'Conner in a form and Echo (PHP 4.06 on win 95) it back I see Carol O\'Conner If I pass that name along to another page I'll see it as: Carol O\\\'Conner Even if I use : ?php echo(htmlspecialchars ($name, ENT_QUOTES)); ? IF I enter my name as:Carol