[PHP] Oracle CMS

2003-07-17 Thread Chris Cook
Are there any open source CMSs that work with Oracle? Thanks, Chris _ STOP MORE SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail -- PHP General Mailing List (http://www.php.net/) To unsubsc

Re: [PHP] create script MYSQL

2003-06-04 Thread Chris Cook
There is a mysql command for doing a sql dump (dont remember what it is though). Also, you might want to check out phpmyadmin at sourceforge. This has flexible tools for putting databases into a text file. Chris From: "agus" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Subject: [PHP] create scr

Re: [PHP] preg_match array question

2003-05-31 Thread Chris Cook
You could also have the form post as an array and this saves you the coding in PHP. Like this: Chris From: David Grant <[EMAIL PROTECTED]> Reply-To: David Grant <[EMAIL PROTECTED]> To: "Daniel J. Rychlik" <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: [PHP] preg_match array questio

[PHP] Form input security

2003-03-09 Thread Chris Cook
Hello all, When using forms, when do I have to worry about cleaning up user data? I know to use escapeshellarg() when using system functions, but how about when using the user data for database inserts? Also, if I do not insert the data into the database or use any system commands, do I still n

Re: [PHP] MAC address user recognition?

2003-02-20 Thread Chris Cook
I have used MAC address authentication using the arp table and it worked for what I used it for, but it does only work over the local network and spoofing is an issue. Using a cookie in conjuction with a MAC address helps the authentication, but it sounds like SSL is the way to go... Does anyon

Re: [PHP] Computer Authorization

2003-02-20 Thread Chris Cook
start with that... Thanks again, Chris From: Ray Hunter <[EMAIL PROTECTED]> To: Chris Cook <[EMAIL PROTECTED]> CC: [EMAIL PROTECTED] Subject: Re: [PHP] Computer Authorization Date: 20 Feb 2003 18:11:59 -0700 domain name, wins, kerberos, nis, mac-address those might be what you nee

RE: [PHP] Computer Authorization

2003-02-20 Thread Chris Cook
ROTECTED]> To: "Chris Cook" <[EMAIL PROTECTED]> Subject: RE: [PHP] Computer Authorization Date: Fri, 21 Feb 2003 01:05:43 -0800 > > Hello all, > > I am looking into an application that only specific computers can > access. A > login does not work since we only want peo

[PHP] Computer Authorization

2003-02-20 Thread Chris Cook
Hello all, I am looking into an application that only specific computers can access. A login does not work since we only want people to log in from certain computers. IP numbers dont work since they are dynamic. Cookies work temporarily, but are often deleted and are not the most secure route.

Re: [PHP] new to php, need help..

2003-02-20 Thread Chris Cook
Try naming the file with a .php extension. It is also possible your server does not support php. Good luck, Chris From: "Jonathan" <[EMAIL PROTECTED]> Reply-To: "Jonathan" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP] new to php, need help.. Date: Thu, 20 Feb 2003 01:34:12 -0600 hi a

Re: [PHP] Skipping Image Upload if Filename is blank

2003-02-19 Thread Chris Cook
I have had this problem before. Try to echo out $_FILES['imagefile']['tmp_name'] when the field is blank. Then you will know what to control for... If I recall correctly, the file name is "none" if there is no uploaded photo. Thus, it exists and that is why the program enters your if statement

[PHP] Oracle to MySQL

2003-02-19 Thread Chris Cook
Hi all, I am working on PHP project with a MySQL backend. However, we would like update the MySQL database periodically with an Oracle database not on our server. What should I do to interface with Oracle? Do I need to install anything on our server (OS X Server running Apache)? Thanks for any

[PHP] Shopping Cart

2003-02-09 Thread Chris Cook
Hello everybody, I am interested in designing a site with a shopping cart. I have several years of programming experience in php and perl, but I have never made a shopping cart. I was looking into some of the already made shopping carts and was wondering what peoples' experiences have been wit

[PHP] HTML and text email

2002-10-08 Thread Chris Cook
Hello all, I am trying to send out a multi-part email that is both text and HTML. The HTML is so I can embed links into the email. However, some of my clients have text-only email programs and all the HTML tags are visible. Is there a way that I can display HTML in the HTML enabled programs an

Re: [PHP] Re: Hardware Address

2002-09-06 Thread Chris Cook
>Sorry, I'm not much help anymore. >> >>tyler >> >>On Fri, 6 Sep 2002 01:24:07 +0200 >><[EMAIL PROTECTED]> wrote: >> >>>Hi, >>> >>>The best way I think is to use exec() or system() to ask that to the >>>system. May

[PHP] Hardware Address

2002-09-05 Thread Chris Cook
Hello all, I am working on a LAN application and am interested in obtaining the user's network card address to limit usage of the program. Is there a way to do this in PHP? I am on a network that uses DHCP so using the IP address probably wont work and I am also worried about IP spoofing. Th