Re: Need help with modifying values

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux