[PHP] Input field

2007-11-13 Thread Ronald Wiplinger
I added just into a input field 19 enclosure which was displayed from the database as: 19\ enclosure That gives me some questions: 1. where the protecting slash comes from? 2. how can I get it away when I want to display that field? 3. The slash is not to see in phpmyadmin, why not? and: 1.

RE: [PHP] Input field

2007-11-13 Thread Shelley Shyan
-Original Message- From: Ronald Wiplinger [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 14, 2007 9:52 AM To: PHP General list Subject: [PHP] Input field I added just into a input field 19 enclosure which was displayed from the database as: 19\ enclosure That gives me some questions: 1. where

Re: [PHP] Input field

2007-11-13 Thread Chris
Ronald Wiplinger wrote: I added just into a input field 19 enclosure which was displayed from the database as: 19\ enclosure That gives me some questions: 1. where the protecting slash comes from? Probably magic_quotes_gpc 2. how can I get it away when I want to display that field? 1)

[PHP] input field masks

2003-09-12 Thread Bobpilly
Hello all I am trying to enforce input masks for dates that are viewable in a single html text box. For example i would like a single tect box that the user will see ##/##/ in and when they click on the field they will only be able to enter digits in the ## areas the / will remain. Is php

Re: [PHP] input field masks

2003-09-12 Thread Ryan A
Javascript is your answer. Cheers, -Ryan We will slaughter you all! - The Iraqi (Dis)information ministers site http://MrSahaf.com - Original Message - From: Bobpilly [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 12, 2003 11:20 AM Subject: [PHP] input field masks

Re: [PHP] input field masks

2003-09-12 Thread Brent Baisley
PHP is server side, it has nothing to do with client side, aside from server up some information. You can, and should, validate the input using PHP after it is submitted. For client side validation you would need to use javascript. You can do what you are trying to do in javascript, but it will

[PHP] Input field array ends up as Array string

2003-01-21 Thread Dan Delaney
Hi every body. I have a form that was originally working just fine. It had a series of input checkboxes with the same name (interests[]). These values then ended up in an array ($_POST['interests']), which I then imploded into a comma separated list ($interests = implode(', ',

Re: [PHP] Input field array ends up as Array string

2003-01-21 Thread Rick Emery
show us code - Original Message - From: Dan Delaney [EMAIL PROTECTED] To: Sent: Tuesday, January 21, 2003 8:33 AM Subject: [PHP] Input field array ends up as Array string Hi every body. I have a form that was originally working just fine. It had a series of input checkboxes

Re: [PHP] Input field array ends up as Array string

2003-01-21 Thread Leon Mergen
Rick Emery [EMAIL PROTECTED] wrote in message 024801c2c15b$1a770e70$0500a8c0@honeybee">news:024801c2c15b$1a770e70$0500a8c0@honeybee... show us code Learn how to quote. :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Input field array ends up as Array string

2003-01-21 Thread Jason Wong
On Tuesday 21 January 2003 22:33, Dan Delaney wrote: Hi every body. I have a form that was originally working just fine. It had a series of input checkboxes with the same name (interests[]). These values then ended up in an array ($_POST['interests']), which I then imploded into a comma

Re: [PHP] Input field array ends up as Array string

2003-01-21 Thread Jason Wong
On Tuesday 21 January 2003 23:03, Jason Wong wrote: Undo any configuration changes made recently, downgrade any recent upgrades etc. To paraphrase Newtown's First Law of Motion: Sorry, Newton's First Law of Motion :) Any working system tends to remain in that state unless external force is

Re: [PHP] Input field array ends up as Array string

2003-01-21 Thread Dan Delaney
Well, in the process of pulling out some code into a sample page to send to the list I found the problem. It was yesterday when someone who was testing it told me about the problem, but the problem must have been going on for a week, because a week ago I added code to a global include script