Posted by David Hall on 12/18/05 18:13
> <?
> if ($_POST["$submit"])
> {
> $Name = $_POST["Name"];
> $Rating = $_POST["Rating"];
>
> $sql = "UPDATE leaderboard SET Name='$Name', Rating='$Rating' WHERE
> ID=$id";
> //replace news with your table name above
> $result = mysql_query($sql);
> echo "Thank you! Information updated.";
> }
> }
> ?>
You don't set id in this case. Of course, from some of your other
code, it looks like you're relying on register_globals to be on, so
maybe it is and that's not why.
David Hall
[Back to original message]
|