RE: [PHP] mail() not working on Win2k

2003-01-06 Thread Collins, Robert
Do you have this line in your php.ini file? SMTP= your mail server here ;for win32 only -Original Message- From: Rad Craig [mailto:[EMAIL PROTECTED]] Sent: Monday, January 06, 2003 9:22 AM To: PHP Mailing List Subject: [PHP] mail() not working on

RE: [PHP] Print page

2002-08-29 Thread Collins, Robert
yes, but that is a browser function not php goto file - page setup - then remove the header and footer data Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Fax: (504) 248-3866 Email : [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original

[PHP] Bussiness Logic Date Problem

2002-08-13 Thread Collins, Robert
I have some bussiness logic that states a specific piece of info be displayed on a specific day and then replaced by another piece of info when the date roll arround. The problem is that it isn't a fixed date. The logic is like: First Sunday in January display info 1 Last Sunday in May display

[PHP] out of office test

2002-07-12 Thread Collins, Robert
sorry to do this but need to make sure my out of office response isint going to spam you guys. Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Fax: (504) 248-3866 Email : [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From:

RE: [PHP] out of office test

2002-07-12 Thread Collins, Robert
Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Fax: (504) 248-3866 Email : [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: Collins, Robert [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 5:24 PM To: [EMAIL

RE: [PHP] Dual Server...

2002-07-09 Thread Collins, Robert
I have Apache and IIS coexisting on my intranet server and the way I set them up was to put each on a different port. (Apache serves http://intranet and IIS serves http://intranet:8080) this appears to work fine. Hope this helps Robert W. Collins II Webmaster New Orleans Regional Transit

RE: [PHP]Erik Hegreberg

2002-07-09 Thread Collins, Robert
Erik just got his own personal email filter strait to the deleted items folder. Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Fax: (504) 248-3866 Email : [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: Jeff Lewis

RE: [PHP] Dual Server...

2002-07-09 Thread Collins, Robert
PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I will probably do this the other way round as we have a few sites... so if i have a single file with a frame and point contents of frame to apache this should work? -Original Message- From: Collins, Robert [mailt

RE: [PHP] Newbie help please!

2002-05-15 Thread Collins, Robert
this will do it: ?php $username = $_GET['user']; $password = $_GET['pass']; echo $username; echo $password; ? Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message-

RE: [PHP] SQL Server test tool

2002-05-15 Thread Collins, Robert
This is not tested but should work PSUDO CODE $mysql_host = localhost:1433; $mysql_login = billy; $mysql_pw = bob; if(!$db_conn = mysql_connect($mysql_host, $mysql_login, $mysql_pw)){ echo Connection Failed; } /PSUDO CODE Robert W.

RE: [PHP] Genus who came up with Self Destruct Code Copy Pro tection

2002-05-14 Thread Collins, Robert
Message- From: Jason Soza [mailto:[EMAIL PROTECTED]] Sent: Monday, May 13, 2002 5:12 PM To: Collins, Robert Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Genus who came up with Self Destruct Code Copy Pro tection For what it's worth, it's been my experience that people that have the freetime to hack

RE: [PHP] Genus who came up with Self Destruct Code Copy Pro tection

2002-05-14 Thread Collins, Robert
IMHO The best way as a contractor to protect yourself against dishonest companies or people is a contract. However, there maybe a simple method to programmatically help. Put something like this in the top of each of the pages that have common functions PSUDO CODE

RE: [PHP] Genus who came up with Self Destruct Code Copy Pro tection

2002-05-14 Thread Collins, Robert
]] Sent: Tuesday, May 14, 2002 10:00 AM To: Stuart Dallas; Collins, Robert; [EMAIL PROTECTED] Subject: Re: [PHP] Genus who came up with Self Destruct Code Copy Pro tection From: Stuart Dallas [EMAIL PROTECTED] Collins, Robert [EMAIL PROTECTED] wrote: Put something like this in the top of each

RE: [PHP] Genus who came up with Self Destruct Code Copy Pro tection

2002-05-13 Thread Collins, Robert
This thread was started to discuss how a contract programmer can protect himself from getting ripped of by an dishonest person or company not every little hacker in the world. SNIP It only takes one person with some free time to break your protection scheme, and then the cat's out of the bag.

RE: [PHP] Self Destruct code

2002-05-07 Thread Collins, Robert
Does it have to be a booby-trap or will some little annoyance like a shareware popup that would just aggravate the heck out of them do the trick? Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original

RE: [PHP] urldecode(0 and urlencode()

2002-04-23 Thread Collins, Robert
you could do a stripslashes () Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message- From: Anthony Ritter [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:06 PM To: [EMAIL PROTECTED]

[PHP] PHP Shopping Engine Recommendation

2002-04-15 Thread Collins, Robert
Can anyone recommend a good commercial shopping cart written in php? Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] include through HTTP

2002-04-12 Thread Collins, Robert
Check the Note about 5 lines down on this page. http://www.php.net/manual/en/features.remote-files.php Note: You can't use remote files in include() and require() statements on Windows. Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email :

RE: [PHP] 2 newbie questions ;)

2002-04-12 Thread Collins, Robert
1. This should work (notice quotes around var) : INPUT TYPE=text NAME=whatever VALUE=?php echo $var; ? This is incorrect (it only shows the first word) : INPUT TYPE=text NAME=whatever VALUE=?php echo $var; ? 2. not sure about the second question but have you tried removing the target, it seems

RE: [PHP] AS/400 data access

2002-04-09 Thread Collins, Robert
I am also trying to access data on an AS/400 have you gotten it to work, if so can you send an example? Thanks in advance. Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message- From: Rance Hall

RE: [PHP] AS/400 data access

2002-04-09 Thread Collins, Robert
:[EMAIL PROTECTED]] Sent: Tuesday, April 09, 2002 2:46 PM To: 'Collins, Robert'; 'Rance Hall'; [EMAIL PROTECTED] Subject: RE: [PHP] AS/400 data access I just did this on a Linux box running Red Hat 7.2 last Friday. I used several sources on the web and wrote up my exact steps and posted them

RE: [PHP] Re: help condensing regular expressions

2002-04-05 Thread Collins, Robert
why not use somthing like this then include($DOCUMENT_ROOT./include/mysql_connect.inc); Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message- From: Tom Rogers [mailto:[EMAIL PROTECTED]] Sent:

RE: [PHP] can't get it to work

2002-04-03 Thread Collins, Robert
Have you tried BETWEEN $query = SELECT * FROM table where date BETWEEN '$month_1/$day_1/$year_1' AND '$month_2/$day_2/$year_2'; Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message- From: Alex

RE: [PHP] Uploading files without an HTML form

2002-03-28 Thread Collins, Robert
If you know the file location, and the location doesn't change you could do an fopen() and basically read and rewrite the file. Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message- From: Sam Rose

RE: [PHP] a CNN headline news grabber

2002-03-28 Thread Collins, Robert
I had written one but CNN keeps changing their page format so it was too hard to keep it up-to-date. That is probably why the one you have is returning a blank page. Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED]

RE: [PHP] Re: Keeping PHP out?

2002-03-27 Thread Collins, Robert
Also make sure that the directory is below the doc_root that is set in the php.ini file ie: - php.ini - doc_root = /html - directory example - |-/root |-/http |-/cgi-bin (PHP will not run here)

RE: [PHP] why doesnt this work???

2002-03-20 Thread Collins, Robert
instead of 'and' use '' if($line[1] == $bruker $line[2] == $passord){ echo hei $bruker.; }else{ echo FEIL; } Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message- From: R'twick

RE: [PHP] why doesnt this work???

2002-03-20 Thread Collins, Robert
Try this if($line[1] == '$bruker' $line[2] == '$passord'){ echo hei $bruker.; }else{ echo FEIL; } Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message- From: chris [mailto:[EMAIL

RE: [PHP] why doesnt this work???

2002-03-20 Thread Collins, Robert
This works : ?php $line = array('','bob','tpw'); $bruker = 'bob'; $passord = 'pw'; if($bruker == $line[1] $passord == $line[2]){ echo hei $bruker.; }else{ echo FEIL; } ? Robert W. Collins II Webmaster New Orleans

RE: [PHP] Re: A stupid question...

2002-03-11 Thread Collins, Robert
Try it like this $letter=a $result =mysql_query(SELECT * FROM emply_info WHERE Lname LIKE'$letter%' ORDER BY Lname, Fname DESC,$db); Robert W. Collins II Webmaster New Orleans Regional Transit Authority Phone : (504) 248-3826 Email : [EMAIL PROTECTED] -Original Message- From: Chuck