Re: [PHP] Question about $_GET

2003-01-15 Thread TomH
Frank, This is frustrating because there are several things at work here... -- firstly -- Page data (POST or GET) is ALWAYS 'character' type when received into your script -- whether or not that's how you use it in your application/database So most times you need to "settype($id, "integer") in

Re: [PHP] data move, Please Help..

2003-01-14 Thread TomH
From previous experience with this problem - the most 'relaible' method for me was to (1) use the access/xls/whatever application to dump a CSV-type file (2) upload the file to the appropriate location on your MySQL server (3) write a PHJP script that use a standard LOAD DATA INFILE query. From

[PHP] Re: Session: I RTFM

2002-12-14 Thread TomH
When faced with this problem I tried the following (works) The top section of PHP code just reads the POST return array and plops it into a series of successive _SESSION vars Included is a FORM to use that shows the simple code at work HTH TomHenry Tested =