OK. Where can I change the register_globals setting?

Thanks for the fast replies.

-Will

"Jay Blanchard" <[EMAIL PROTECTED]> kirjoitti 
viestissä:[EMAIL PROTECTED]
> [snip]
> http://localhost/index.php?team=F10a
>
> I have this in my page and it doesn't work:
> $sql = "select jouk_nimi from x_jun_jouk where jouk_id='$team' ";
> $kysely = mysql_query($sql);
> $tulos = mysql_fetch_row($kysely);
> $jouk_nimi = $tulos[0];
>
> $jouk_nimi -variable will be empty.
>
> This works (replaced the $team with static entry "F10a")
> $sql = "select jouk_nimi from x_jun_jouk where jouk_id='F10a' ";
> $kysely = mysql_query($sql);
> $tulos = mysql_fetch_row($kysely);
> $jouk_nimi = $tulos[0];
>
> $jouk_nimi get's right value from database.
> [/snip]
>
> register_globals is 'on' on the other server. Try
>
> $sql = "select jouk_nimi from x_jun_jouk where jouk_id=$_GET['team'] "; 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to