php-general | 2003022
Date: 02/25/03
- Next message: Justin French: "Re: [PHP] Uploading Images"
- Previous message: Luis A: "[PHP] to Bryan Lipscy Re: [PHP] how___??"
- In reply to: CF High: "[PHP] $_POST arrays not evaluated in sql statement -- why?"
- Next in thread: Joshua Moore-Oliva: "Re: [PHP] $_POST arrays not evaluated in sql statement -- why?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Try
sql = ".....'" . $_POST['jersey_id'][$x] . "',.....
Also make sure you're form is being submitted with POST and not GET...
-philip
On Tue, 25 Feb 2003, CF High wrote:
> Hey all.
>
> Got a problem with this sql statement -- php vars are evaluated (e.g. the
> $date var), but not the $_POST arrays..........
>
> All of the arrays return correct values -- What am I missing here?
>
> $sql = "INSERT into rosters (school_id, sport_id, date, jersey_id, first,
> last, position, grade, town, state, country, height, weight, DOB)
> VALUES
> ('1','1','$date','$_POST['jersey_id'][$x]','$_POST['first'][$x]','$_POST['la
> st'][$x]','$_POST['position'][$x]','$_POST['grade'][$x]',
>
> '$_POST['town'][$x]','$_POST['state'][$x]','$_POST['country'][$x]','$_POST['
> height'][$x]',
> '$_POST['weight'][$x]','$DOB[$i]')";
>
> I still have some hair left on my head..........
>
> --Noah
>
> --
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Justin French: "Re: [PHP] Uploading Images"
- Previous message: Luis A: "[PHP] to Bryan Lipscy Re: [PHP] how___??"
- In reply to: CF High: "[PHP] $_POST arrays not evaluated in sql statement -- why?"
- Next in thread: Joshua Moore-Oliva: "Re: [PHP] $_POST arrays not evaluated in sql statement -- why?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

