12/09/2012, 15:03
|
| | Fecha de Ingreso: octubre-2010 Ubicación: España
Mensajes: 1.007
Antigüedad: 14 años, 1 mes Puntos: 123 | |
Respuesta: Pasar Valor de Columna MySQL a Variable $link= mysql_connect("localhost", "root", "root*") or die(mysql_error());
mysql_select_db(contencion) or die(mysql_error());
$datos=mysql_query("SELECT * FROM tabla WHERE campo1='$variable', $link);
while($row = mysql_fetch_array($datos)){
$variable2=$row['campo2'];
echo $variable2;
echo $row ['campo2'];
}
que errrores te da??? |