Questione : PHP di informazioni di fila dell'aggiornamento

Ho due colonne, uno è il _Value cominciante e l'altro è il Current_Value.  Vorrei affinchè i dati di Current_Value copi sopra al campo di Starting_Value in quanto la stessa fila.  il problema del
The con il codice corrente è esso sta copiando i dati dal primo campo di Current_Value e sta dando quei dati a tutti i campi di Starting_Value durante il database.


include_once “connect_to_mysql.php„;

$sql = mysql_query (“Current_Value PRESCELTO da stock_index„); il
$res = mysql_query ($sql) o muore (mysql_error ());
$totcal = mysql_fetch_assoc ($res); il

//$results = mysql_query ($sql) o muore (mysql_error ());
$sql2 = “stock_index Starting_Value='".$totcal STABILITO ['Current_Value'] dell'AGGIORNAMENTO. “'“; il
$res = mysql_query ($sql2) o muore (mysql_error ());
? >
class= del

Risposta : PHP di informazioni di fila dell'aggiornamento

pozzo che è facile…

$sql = “Current_Value PRESCELTO, identificazione da stock_index„;
    $result = il mysql_query ($sql) o muoiono (mysql_error ());
    mentre ($row = mysql_fetch_array ($result)){
        $current_value = $row [0];
        $id = $row [1];
        $sql2 = “stock_index STABILITO Starting_Value= STABILITO “$current_value„ dello stock_index dell'AGGIORNAMENTO DOVE identificazione = $id„
        $res = il mysql_query ($sql2) o muoiono (mysql_error ());
    }
Altre soluzioni  
 
programming4us programming4us