modify_values2.php

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


<?php
include("connect.php");



$sql = "Select * from leaderboard ";
$result = mysql_query($sql);

You'll want to do something like:
$id = mysql_real_escape_string($_GET['id']);
$sql = "Select * from leaderboard WHERE ID='$id'";

David Hall

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

Reply via email to