php-general | 2003022
Date: 02/25/03
- Next message: Luis A: "[PHP] to paulm Re: [PHP] mysql trouble"
- Previous message: Justin French: "Re: [PHP] Uploading Images"
- In reply to: CF High: "[PHP] $_POST arrays not evaluated in sql statement -- why?"
- Next in thread: John W. Holmes: "RE: [PHP] $_POST arrays not evaluated in sql statement -- why?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I believe that single quotes will display exactly what you type in, and double
quotes will actually process it.. e.g.
$foo = "hello";
echo '$foo';
You see $foo
echo "$foo";
You see hello
On February 25, 2003 09:42 pm, 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['l
>a 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
- Next message: Luis A: "[PHP] to paulm Re: [PHP] mysql trouble"
- Previous message: Justin French: "Re: [PHP] Uploading Images"
- In reply to: CF High: "[PHP] $_POST arrays not evaluated in sql statement -- why?"
- Next in thread: John W. Holmes: "RE: [PHP] $_POST arrays not evaluated in sql statement -- why?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

