[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.

Re: [PHP] Re: Hardware Address

2002-09-06 Thread Chris Cook
. -- Nicos - CHAILLAN Nicolas [EMAIL PROTECTED] www.WorldAKT.com - Hébergement de sites Internet Chris Cook [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] Hello all, I am working on a LAN application and am interested in obtaining the user's network card address to limit usage

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: form input type=text name=num[] input type=text name=num[] input type=text name=num[] /form Chris From: David Grant [EMAIL PROTECTED] Reply-To: David Grant [EMAIL PROTECTED] To: Daniel J. Rychlik

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 script

[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

[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

[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

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

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 all,

[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] Computer Authorization

2003-02-20 Thread Chris Cook
thanks for the response. I have tried MAC addresses. I get them from the arp table. The only problem is that the arp table is no longer available outside of the local network. Can I get them from else where? Any more suggestions? Thanks, Chris From: Rich Gray [EMAIL PROTECTED] To: Chris

Re: [PHP] Computer Authorization

2003-02-20 Thread Chris Cook
to 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 need... if you

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

[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

[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