
Recuperar Dados No Campo Textarea
Started By Leandro de Souza, 25/05/2007, 17:01
10 replies to this topic
#1
Posted 25/05/2007, 17:01
- Pessoal é o seguinte, sou novo na linguagem PHP e me deparei com um problema, tenho uma área de registro com os seguintes campos: Título e Comentário, onde o titulo é um campo Imput e o Comentário é um campo Textarea, para gravar os dados na sql e exibir os resultados tranquilo mas quando vou para a página de editar os dados, o texto do campo Textarea não aparece.
- Por favor, alguém sabe como resolver isso, pois quero prosseguir em meu aprendizado, Obrigado.
- Por favor, alguém sabe como resolver isso, pois quero prosseguir em meu aprendizado, Obrigado.
#2
Posted 25/05/2007, 17:23
Como você esta tentando exibir?
#3
Posted 25/05/2007, 17:42
este é o código da página que exibe os resultados:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR...l1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-br" lang="pt-br">
<head>
<title>Parrillada -</title>
<link href="../arquivos/estilos.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="alinha">
<?
$link = mysql_connect("localhost", "root", "") or die ("Não foi possível conectar: " . mysql_error());
$banco = mysql_select_db("parque", $link) or die ("Erro ao abrir o banco de dados: " . mysql_error());
$resultado = mysql_query("select * from servicos where id_servicos = $id");
$dados = mysql_fetch_array($resultado);
?>
<div id="topo">
<div id="menutopo">
<a href="ADM_servicos.php">|Edit-serviços|</a>
<a href="ADM_promocoes.php">|Edit-Promoções|</a>
<a href="ADM_imagens.php">|Fotos|</a>
<a href="sair.php">|Sair|</a>
</div>
</div>
<div>
<div id="servicos">
<a class="titulo" href="teste1.html"><span class="grande">S</span>erviços</a><br />
<h1></h1>
Altera:<br />
<form name="form1" method="post" action="ADM_servAlterarsalvar.php">
<input type="hidden" name="id" id="id" value="<? echo $id;?>" />
<table width="200" border="0" align="center">
<tr>
<td align="right">Título:</td>
<td><input name="titulo" type="text" id="titulo" value="<? echo $dados["titulo"];?>" maxlength="40"></td>
</tr>
<tr>
<td align="right">Comentário:</td>
<td>
<script language="javascript">
function limitar(obj)
{
if(obj.value.length>=300)
{
event.keyCode=8;
return false;
}
contar(obj);
}
function contar(obj)
{
document.all.caracteres.value = obj.value.length;
}
</script>
<textarea name="comenta" type="text" id="comenta" value="<? echo $dados["comenta"];?>" class="inputs" cols="50" rows="6" onKeyPress="limitar(this)"; onKeyDown="contar(this)";></textarea><br />
<input class="inputs" type="text" size="3" name="caracteres" readonly> caracteres.<br /><br />
</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Salvar"></td>
</tr>
</table>
</form>
<h1></h1>
</div>
</div>
</div>
</body></html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR...l1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-br" lang="pt-br">
<head>
<title>Parrillada -</title>
<link href="../arquivos/estilos.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="alinha">
<?
$link = mysql_connect("localhost", "root", "") or die ("Não foi possível conectar: " . mysql_error());
$banco = mysql_select_db("parque", $link) or die ("Erro ao abrir o banco de dados: " . mysql_error());
$resultado = mysql_query("select * from servicos where id_servicos = $id");
$dados = mysql_fetch_array($resultado);
?>
<div id="topo">
<div id="menutopo">
<a href="ADM_servicos.php">|Edit-serviços|</a>
<a href="ADM_promocoes.php">|Edit-Promoções|</a>
<a href="ADM_imagens.php">|Fotos|</a>
<a href="sair.php">|Sair|</a>
</div>
</div>
<div>
<div id="servicos">
<a class="titulo" href="teste1.html"><span class="grande">S</span>erviços</a><br />
<h1></h1>
Altera:<br />
<form name="form1" method="post" action="ADM_servAlterarsalvar.php">
<input type="hidden" name="id" id="id" value="<? echo $id;?>" />
<table width="200" border="0" align="center">
<tr>
<td align="right">Título:</td>
<td><input name="titulo" type="text" id="titulo" value="<? echo $dados["titulo"];?>" maxlength="40"></td>
</tr>
<tr>
<td align="right">Comentário:</td>
<td>
<script language="javascript">
function limitar(obj)
{
if(obj.value.length>=300)
{
event.keyCode=8;
return false;
}
contar(obj);
}
function contar(obj)
{
document.all.caracteres.value = obj.value.length;
}
</script>
<textarea name="comenta" type="text" id="comenta" value="<? echo $dados["comenta"];?>" class="inputs" cols="50" rows="6" onKeyPress="limitar(this)"; onKeyDown="contar(this)";></textarea><br />
<input class="inputs" type="text" size="3" name="caracteres" readonly> caracteres.<br /><br />
</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Salvar"></td>
</tr>
</table>
</form>
<h1></h1>
</div>
</div>
</div>
</body></html>
#4
Posted 26/05/2007, 22:01
O elemento <textarea> não possui o atributo value. O valor é inserido entre <textarea> e </textarea>. Sinto muito em lhe dizer, mas o doctype XHTML Strict em teu código não passa de enfeite. 
Movendo de PHP para (X)HTML, CSS, JavaScript e Metodologias
[]s
Até mais

Movendo de PHP para (X)HTML, CSS, JavaScript e Metodologias
[]s

#5
Posted 24/09/2017, 17:46
Priligy Generico Dapoxetina 60 Mg Comment Utiliser Clomid Acquistare Viagra cialis buy online Finasterid 1mg Kaufen Ohne Rezept Pharmacy Online 365 Review Forum Achat Viagra En Ligne
#6
Posted 09/10/2017, 20:59
Mechanism Generic Propecia Propecia Klachten viagra Cialis Tarif Pharmacie Free Shipping Worldwide Amoxicilina Discount Purchase On Line
Donde Comprar Viagra En Cordoba Propecia Minoxidil viagra Amoxicillin Canine Pharmaceutical Cialis Fruchtbarkeit
Amoxicillin And Pill Size Average Cost Of Cialis Prescription Cialis Et Sport online pharmacy Can I Purchase Acticin Secure Ordering
Viagra Alternative Apotheke Quanto Costa Il Viagra In Italia Viagra Vendita buy viagra online Buy Orlistat 60 Mg With No Prescription El Viagra Tiene Vencimiento
Online Generic Cialis Tadalafil Baclofene Sevrage Tabac levitra brand Amoxicillin Pre Med Dental Propecia Low Blood Pressure Zithromax Metabolism
Amoxicillin Natural Remedy Healthymale Viagra And Dropomine viagra Prix Du Xenical En Belgique
Donde Comprar Viagra En Cordoba Propecia Minoxidil viagra Amoxicillin Canine Pharmaceutical Cialis Fruchtbarkeit
Amoxicillin And Pill Size Average Cost Of Cialis Prescription Cialis Et Sport online pharmacy Can I Purchase Acticin Secure Ordering
Viagra Alternative Apotheke Quanto Costa Il Viagra In Italia Viagra Vendita buy viagra online Buy Orlistat 60 Mg With No Prescription El Viagra Tiene Vencimiento
Online Generic Cialis Tadalafil Baclofene Sevrage Tabac levitra brand Amoxicillin Pre Med Dental Propecia Low Blood Pressure Zithromax Metabolism
Amoxicillin Natural Remedy Healthymale Viagra And Dropomine viagra Prix Du Xenical En Belgique
#7
Posted 09/10/2017, 23:46
Amoxicillin And Creatine viagra online Birth Contorl Overnight Vademecum Propecia Is Zithromax Generic
Levitra Affitto On Line Buying real worldwide isotretinoin best website mastercard Robitussin With Amoxicillin viagra online prescription Farmacia A Distancia Propecia
Levitra Affitto On Line Buying real worldwide isotretinoin best website mastercard Robitussin With Amoxicillin viagra online prescription Farmacia A Distancia Propecia
#8
Posted 27/10/2017, 07:18
What Is Amoxicillin Used To Treat Cialis Frankreich Kaufen Propecia Hair Fine viagra prescription Clomid Dianabol Xenical Diet Pill Online From Canada
Finasteride Costi Propecia Levitra 5 Mg Tutti I Giorni Kamagra Ingredients viagra prescription Abilify Via Mail Order Amoxicillin Clavulanic Acid Dose In Animals
Finasteride Costi Propecia Levitra 5 Mg Tutti I Giorni Kamagra Ingredients viagra prescription Abilify Via Mail Order Amoxicillin Clavulanic Acid Dose In Animals
#9
Posted 27/10/2017, 13:14
Discounts! best hair products 2017
Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).
READ MORE
Yanxi 2016 new woman handbag pu leather shoulder bags lady handbag+ messenger bag+ purse +card bag +key bag 5 sets ( 62.49 $)
Stylish turn-dowm collar long sleeve double-breasted with belt women's trench coat ( 40.77 $)
Brazilian water wave virgin hair 4 bundles human hair 7a unprocessed brazilian curly virgin hair brazilian hair weave bundles ( 50.00 $)
Iwish hair thick 4 bundles malaysian body wave malaysian virgin hair body wave wavy human hair ali moda malaysian virgin hair ( 72.70 $)
Marylebone light navy blue peble tote ( 681.52 $) Aspinal of London
DISKUS â diving equipment, underwater hunting and fishing, snorkeling
2016 New Yoga Leggings For Women High Waist Gym Clothing Sports Slimming Pants Lulu Workout Sport Fitness Slim Running Clothes ( 25.96 $)
2x car laser projector logo ghost shadow light universal fit for lada priora granta kalina niva largus vaz samara 2106 2107 2110 ( 15.00 $)
Amkov AMK7000S 4K Ultra HD WiFi Action Camera-59.32 $
30 Colors Rolls Striping Tape Line Nail Art Sticker Tools Beauty Decorations for on Nail Stickers ( 1.95 $)
Vintage flip pu leather leather case for iphone 5 5s 6s luxury phone cases cover coque ( 4.99 $)
300PCS 3mm Round LED Emitting Light Diode Kit ( $4.05 )
2016 Long Lasting Liquid Lipstick DOSE OF COLORS Matte Liquid Lipstick Bare With Me ( 1.43 $)
1PC 500ML Transparent Water Bottles Plastic Juice Tea Coffee Space Cup Hot Sale D0 ( 3.49 $)
Z80 3G Smartwatch-65.99 $

Products which fall under this return policy can be returned domestically, as long as they are unused and in the original packaging. No questions asked!
If a product that falls under this guarantee is found to be counterfeit, you will get a full refund (shipping costs included).

READ MORE
Yanxi 2016 new woman handbag pu leather shoulder bags lady handbag+ messenger bag+ purse +card bag +key bag 5 sets ( 62.49 $)
Stylish turn-dowm collar long sleeve double-breasted with belt women's trench coat ( 40.77 $)
Brazilian water wave virgin hair 4 bundles human hair 7a unprocessed brazilian curly virgin hair brazilian hair weave bundles ( 50.00 $)
Iwish hair thick 4 bundles malaysian body wave malaysian virgin hair body wave wavy human hair ali moda malaysian virgin hair ( 72.70 $)
Marylebone light navy blue peble tote ( 681.52 $) Aspinal of London
DISKUS â diving equipment, underwater hunting and fishing, snorkeling
2016 New Yoga Leggings For Women High Waist Gym Clothing Sports Slimming Pants Lulu Workout Sport Fitness Slim Running Clothes ( 25.96 $)
2x car laser projector logo ghost shadow light universal fit for lada priora granta kalina niva largus vaz samara 2106 2107 2110 ( 15.00 $)
Amkov AMK7000S 4K Ultra HD WiFi Action Camera-59.32 $
30 Colors Rolls Striping Tape Line Nail Art Sticker Tools Beauty Decorations for on Nail Stickers ( 1.95 $)
Vintage flip pu leather leather case for iphone 5 5s 6s luxury phone cases cover coque ( 4.99 $)
300PCS 3mm Round LED Emitting Light Diode Kit ( $4.05 )
2016 Long Lasting Liquid Lipstick DOSE OF COLORS Matte Liquid Lipstick Bare With Me ( 1.43 $)
1PC 500ML Transparent Water Bottles Plastic Juice Tea Coffee Space Cup Hot Sale D0 ( 3.49 $)
Z80 3G Smartwatch-65.99 $

#10
Posted 07/11/2017, 04:58
Cialis Ou L'Acheter levitra plus Levitra Stopped Working Prix Du Vrai Viagra Cialis Le Moins Cher Immigrer Au Canada
Viagra Kaufen Ohne Visa viagra online prescription Levitra Langzeittherapie
Best Place To Buy Synthroid Online viagra Non Generic Viagra
Viagra Kaufen Ohne Visa viagra online prescription Levitra Langzeittherapie
Best Place To Buy Synthroid Online viagra Non Generic Viagra
#11
Posted 12/02/2023, 09:28
ordering tamoxifen and clomid The FDA has approved Botox as a preventative treatment for chronic migraine headaches
Kryger MH, Otake K, Foerster J fertility pills online
dapoxetine priligy Poikicholan is sometimes used as a natural treatment for liver problems
Kryger MH, Otake K, Foerster J fertility pills online
dapoxetine priligy Poikicholan is sometimes used as a natural treatment for liver problems
1 user(s) are reading this topic
0 membro(s), 1 visitante(s) e 0 membros anônimo(s)