Re: [PHP] forms into database and visa versa

2002-05-17 Thread Analysis & Solutions
> Anyone have a link or links to how to definitively make safe inserts to > databases with form information? It's a good idea to validate all data you're sticking in before you do. For example, if you have a numeric field, you don't want the person to be able to submit letters in that field. So,

Re: [PHP] forms into database and visa versa

2002-05-17 Thread Dennis Gearon
could just create a .csv file (comma seperated > text) that excel can read easily > - Original Message - > From: "Dennis Gearon" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, May 17, 2002 11:13 AM > Subject: [PHP] forms into databas

Re: [PHP] forms into database and visa versa

2002-05-17 Thread Geoff Hankerson
depending on your needs you could just create a .csv file (comma seperated text) that excel can read easily - Original Message - From: "Dennis Gearon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 17, 2002 11:13 AM Subject: [PHP] forms into d

[PHP] forms into database and visa versa

2002-05-17 Thread Dennis Gearon
***_PLEASE CC me as I am on digest_*** Anyone have a link or links to how to definitively make safe inserts to databases with form information? I'm thinking this has to do with add/remove slashes. BUT, I also think that it might be a good idea to write a function that adds slashes to all SQL wo