Re: [PHP] php form help...

2008-01-08 Thread Daniel Brown
On Jan 8, 2008 5:04 PM, Philip Thompson <[EMAIL PROTECTED]> wrote: > I guess this ruins my impression of you being this 28 y/o > programmer... grandpa! ;) > > Hehehe No, they just start raising families at a very young age. Tedd is only about seven years older than his children. -- Daniel P

Re: [PHP] php form help...

2008-01-08 Thread tedd
At 4:04 PM -0600 1/8/08, Philip Thompson wrote: On Jan 8, 2008, at 11:52 AM, tedd wrote: As I tell my grand-kids, half the people you meet everyday are below average intelligence. Cheers, tedd I guess this ruins my impression of you being this 28 y/o programmer... grandpa! ;) Yeah, I'm a

Re: [PHP] php form help...

2008-01-08 Thread Philip Thompson
On Jan 8, 2008, at 11:52 AM, tedd wrote: At 11:17 AM -0600 1/8/08, Jack Mays wrote: > You think someone who didn't even know how to get post data in the first place knows how to properly sanitize it? :) One would think that the OP would lookup "sanitize" or some form of that search in goo

Re: [PHP] php form help...

2008-01-08 Thread tedd
At 11:17 AM -0600 1/8/08, Jack Mays wrote: > You think someone who didn't even know how to get post data in the first place knows how to properly sanitize it? :) One would think that the OP would lookup "sanitize" or some form of that search in google to become more familiar with the term

Re: [PHP] php form help...

2008-01-08 Thread Jack Mays
> > You think someone who didn't even know how to get post data in the > first place knows how to properly sanitize it? :) > One would think that the OP would lookup "sanitize" or some form of that search in google to become more familiar with the term and what it means, but then again I probab

Re: [PHP] php form help...

2008-01-08 Thread Daniel Brown
On Jan 8, 2008 12:12 PM, Eric Butera <[EMAIL PROTECTED]> wrote: > You think someone who didn't even know how to get post data in the > first place knows how to properly sanitize it? :) Maybe, maybe not, but the point is to mention that it should be done to allow further exploration and study t

Re: [PHP] php form help...

2008-01-08 Thread Eric Butera
On Jan 8, 2008 12:00 PM, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Jan 8, 2008 11:56 AM, 2 Logic Studios <[EMAIL PROTECTED]> wrote: > > Daniel, > > > > Thanks...worked like a charm > > My pleasure. Just remember to sanitize the code as I said if > you're going to do anything other than

Re: [PHP] php form help...

2008-01-08 Thread Daniel Brown
On Jan 8, 2008 11:56 AM, 2 Logic Studios <[EMAIL PROTECTED]> wrote: > Daniel, > > Thanks...worked like a charm My pleasure. Just remember to sanitize the code as I said if you're going to do anything other than display it in the text box. Otherwise, a malicious user (or possibly even a ty

Re: [PHP] php form help...

2008-01-08 Thread Daniel Brown
On Jan 8, 2008 11:19 AM, 2 Logic Studios <[EMAIL PROTECTED]> wrote: > I am trying to create this kind of form > http://www.12monthinternetmillionaire.com/affiliate.php > > a user inserts their clickbank id and its generated in the field > belowany pointers ? Yes. Hire a programmer. ;-P

Re: [PHP] PHP Form Help

2006-04-06 Thread tedd
At 7:01 PM -0700 4/5/06, Jai Rangi wrote: Greeting, I hope this is the right place for this. If not please guide me. I am having problem with my "Form". Code is below. I want to generate an error message if the required fields are not filled. If they are filled then I want to add them to the da

Re: [PHP] PHP Form Help

2006-04-05 Thread Chris
Jai Rangi wrote: Dear Chris, Thank you for your response. I will make sure to start a new thread for future. I tried this but it did not work if (isset($_POST['title'])) { $title = htmlentities($_POST['title']); echo $title; } else { $title = ''; } This part of my code seems to be t

Re: [PHP] PHP Form Help

2006-04-05 Thread Jai Rangi
Dear Chris, Thank you for your response. I will make sure to start a new thread for future. I tried this but it did not work if (isset($_POST['title'])) { $title = htmlentities($_POST['title']); echo $title; } else { $title = ''; } This part of my code seems to be the problem, Though

Re: [PHP] PHP Form Help

2006-04-05 Thread Chris
Jai Rangi wrote: Greeting, I hope this is the right place for this. If not please guide me. I am having problem with my "Form". Code is below. I want to generate an error message if the required fields are not filled. If they are filled then I want to add them to the database and display the fo

Re: [PHP] PHP form help

2003-02-19 Thread Steven M
Thanks Ray but i've found the problem and sorted it. :-) Steven M -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP form help

2003-02-19 Thread Steven M
Hi Johnathan Thanks I've got it now, hidden fields did the trick. :-) Steven M "Jonathan Villa" <[EMAIL PROTECTED]> wrote in message 004301c2d851$24ac2fd0$8600a8c0@inhocvince">news:004301c2d851$24ac2fd0$8600a8c0@inhocvince... > How is the information being kept? Sessions? You'll either want to

Re: [PHP] PHP form help

2003-02-19 Thread Ray Hunter
Please provide more information...ie source code so we can find the problem. Ray On Wed, 2003-02-19 at 13:14, Steven M wrote: > Hi, > > I have created a form that passes details to the next page so the user can > see the details they have submitted before clicking confirm to submit to the > dat

RE: [PHP] PHP form help

2003-02-19 Thread Jonathan Villa
How is the information being kept? Sessions? You'll either want to store them in a session or create hidden fields on the confirmation page, then when they click on confirm, you'll have access to the fields on the new page, (the page where your processing script is) ---> Jonathan -O