Re: [PHP] Submit hitting enter problem

2002-11-11 Thread dwalker
It is a client side browser issue. Which browser are you testing within??? -Original Message- From: rija <[EMAIL PROTECTED]> To: php <[EMAIL PROTECTED]> Date: Sunday, November 10, 2002 9:49 PM Subject: [PHP] Submit hitting enter problem What am I missing? My form does not submit whe

Re: [PHP] session vs. header

2002-11-06 Thread dwalker
I believe the php code gets executed before html code is processed. -Original Message- From: dwalker <[EMAIL PROTECTED]> To: huge junk mail <[EMAIL PROTECTED]>; [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Wednesday, November 06, 2002 10:44 AM Subject: Re: [PHP] session

Re: [PHP] session vs. header

2002-11-06 Thread dwalker
What I've done : 1. Allow the user to login 2. Use the login.php page as its own 'form action' 3. Let the login form decide when to redirect the user to the 'destination' page. 4. force the destination page (welcome.php) to do additional authentication checking by comparing the users input to some

Re: [PHP] Mutiple header statements?

2002-10-30 Thread dwalker
try setting the variable to match one of the IF statement criteria to see what the result is. -Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: 1LT John W. Holmes <[EMAIL PROTECTED]> Cc: Rick Emery <[EMAIL PROTECTED]>; [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Wednesday,

Re: [PHP] Mutiple header statements?

2002-10-30 Thread dwalker
Could it be that the results return TRUE for both statements??? And it posts the same variable twice??? -Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: 1LT John W. Holmes <[EMAIL PROTECTED]> Cc: Rick Emery <[EMAIL PROTECTED]>; [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date:

Re: [PHP] Displaying one of three functions.

2002-10-30 Thread dwalker
You could try something less convoluted like: NOTE: the code between the IF and ENDIF will not be visible unless the condition equates to TRUE -Original Message- From: Steve Jackson <[EMAIL PROTECTED]> To: PHP General <[EMAIL PROTECTED]> Date: Monday, October 28, 2002 8:14 AM

Re: [PHP] Decimal Places

2002-10-30 Thread dwalker
Fields("UnitPrice"), 2, -2, -2) ?> -Original Message- From: Andrew Wilson <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday, October 29, 2002 11:34 PM Subject: [PHP] Decimal Places >Hay guys, >I have two variables ( integers ) that are being minused one from t

Re: [PHP] One mail function, multiple recipients

2002-10-28 Thread dwalker
One mail function, multiple recipients >Hello, > >On 10/27/2002 06:23 PM, Dwalker wrote: >> You'll need to be careful with this method. In an effort to keep spam to a >> minimum, some ISP's may refuse messages with more than X number of email >> address

Re: [PHP] One mail function, multiple recipients

2002-10-27 Thread dwalker
You'll need to be careful with this method. In an effort to keep spam to a minimum, some ISP's may refuse messages with more than X number of email address attached. Then the question becomes: did everyone on the list actually receive the message? -Original Message- From: Justin French

Re: [PHP] Re: Getting the "From: admin@site.com" to work

2002-10-26 Thread dwalker
How would you then build into the headers an 'invisible' BCC (blind carbon copy)? -Original Message- From: Monty <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Saturday, October 26, 2002 3:53 PM Subject: [PHP] Re: Getting the "From: [EMAIL PROTECTED]" to work >Andr

[PHP] String extraction from blobs. Extracted string to be placed into field within another table.

2002-10-20 Thread dwalker
What is the most effective method of extracting from a blob specified text to be placed into another table field.         This email message and all attachments transmitted herewith are tradesecret and/or confidential information intended only for the viewing and use of addressee.  If the rea

[PHP] Re: [PHP-DB] MySQL Insert Select statement

2002-10-19 Thread dwalker
thers. -Original Message- From: John W. Holmes <[EMAIL PROTECTED]> To: 'dwalker' <[EMAIL PROTECTED]>; 'professional php' <[EMAIL PROTECTED]>; [EMAIL PROTECTED] <[EMAIL PROTECTED]>; [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Saturday, October 19, 2002 7:24

[PHP] MySQL Insert Select statement

2002-10-19 Thread dwalker
While reading the MySQL manual for INSERT SELECT, I was not able to determine how to include all 5 fields of one table into another table (containing 100 fields) into SPECIFIC data fields.  Do I need to explicitly list all the fields within the table of 5 fields?  If so, would the statement

Re: [PHP] MySQL GMT --> Local time

2002-10-16 Thread dwalker
Try something like: Fields("AccountActivationDate"), 'l, F jS Y H:i:s') ?> THIS E-MAIL MESSAGE AND ALL ATTACHMENTS TRANSMITTED HEREWITH ARE TRADE SECRET AND/OR CONFIDENTIAL INFORMATION INTENDED ONLY FOR THE VIEWING AND USE OF ADDRESSEE. IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIE

[PHP] What is the easiest method of determining how and when to implement browser specific external style sheets??

2002-10-16 Thread dwalker
I posted this question on another list and received a response consisting of potentially helpful code. It has not been tested on my end, but I thought I'd pass the information along. Share the wealth. dwalker wrote: > What is the easiest method of determining how and when to i

Re: [PHP] Re: Need help with HTTP-Authentication

2002-10-16 Thread dwalker
direct authentication with http headers http://www.yourfavoritepage.com/login.php?v=nogo' ); } ?> THIS E-MAIL MESSAGE AND ALL ATTACHMENTS TRANSMITTED HEREWITH ARE TRADE SECRET AND/OR CONFIDENTIAL INFORMATION INTENDED ONLY FOR THE VIEWING AND USE OF ADDRESSEE. IF THE READER OF THIS MESSAGE IS

Re: [PHP] Fedex rate calculator

2002-10-15 Thread dwalker
day, October 16, 2002 1:40 AM Subject: Re: [PHP] Fedex rate calculator >Hi Dwalker, > >Fedex has changed the site after sep 22 2002.Most of the scripts i got where >for the >http://rate.dmz.fedex.com/servlet/RateFinderServlet?orig_country=US&languag e >=english link which d

Re: [PHP] Fedex rate calculator

2002-10-15 Thread dwalker
http://www.phpbuilder.com/snippet/detail.php?type=snippet&id=413 THIS E-MAIL MESSAGE AND ALL ATTACHMENTS TRANSMITTED HEREWITH ARE TRADE SECRET AND/OR CONFIDENTIAL INFORMATION INTENDED ONLY FOR THE VIEWING AND USE OF ADDRESSEE. IF THE READER OF THIS MESSAGE IS NOT THE INTENDED RECIPIENT, YOU ARE

Re: [PHP] Fedex rate calculator

2002-10-15 Thread dwalker
try this link http://clickit.go2net.com/search?cid=239171&site=srch&area=srch.noncomm.goog le&shape=textlink&cp=dogpile&rawto=http://www.phpbuilder.com/snippet/browse. php%3Fby%3Dcat%26cat%3D11 THIS E-MAIL MESSAGE AND ALL ATTACHMENTS TRANSMITTED HEREWITH ARE TRADE SECRET AND/OR CONFIDENTIAL INF

[PHP] Passing string variable to HTML TITLE tag fails within Netscape but works well within IE.

2002-10-15 Thread dwalker
Passing string variable to HTML TITLE tag fails within Netscape but workwell within IE.I have a single page consisting of inventory items to be sold. When an itemis selected, it passes the product name to a DETAIL page as part of theTITLE tag for the DETAIL page. My problem is: Netscape do