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

Reply via email to