PHP - poner un valor de incio en un textbox

 
Vista:

poner un valor de incio en un textbox

Publicado por macro (1 intervención) el 22/03/2006 22:50:52
Quiero poner dentro de un campo el valor de inicio y me sale el siguiente error:

Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in
<?php
$link = @mysql_connect ("localhost", "root", "");
$conex=@mysql_select_db("rotary",$link);
$resultt=mysql_query("select * from descritor",$link);
$row = mysql_fetch_array;
?>
<input name="textfield" type="text" value="<?php echo " $row['desp']" ?>">Cual podria ser el Problema????????????????????????????????''
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:poner un valor de incio en un textbox

Publicado por Anthony Reto (80 intervenciones) el 23/03/2006 04:04:49
acaso esta linea $row = mysql_fetch_array;
no deberia ser $row = mysql_fetch_array($resultt);
????
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar