Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/08/2011, 18:45
leoangels
 
Fecha de Ingreso: marzo-2011
Ubicación: Zacatecas
Mensajes: 59
Antigüedad: 13 años, 1 mes
Puntos: 0
No me aparece editor de texto Whizzywig

Muy buenas tardes a todos tengo un gran problema soy novato,queria meter un editor de texto en mi pagina web para la edicion de noticias pero no me aparece el editor de texto no se cual sea el problema,probe el codigo del editor de texto en otro documento y si me funciona pero dentro del form no funciona! espero no sea mucha molestia,disculpen mi ignorancia saludos


<?php
if(!isset($_SESSION)){
session_start();
}
include('BD.php');
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Notas</title>
<link rel="stylesheet" type="text/css" href="css/ETablas.css" title="default"/>
<script type="text/javascript" src="js/whizzywig61.js"> </script>
</head>
<p>&nbsp;</p>
<body onload="whizzywig()">
<table width="473" border="0" align="center">
<form id="form1" name="form1" method="post" action='procesanoticia.php' enctype='multipart/form-data'>
<tr>
<td width="78"><strong>Titulo:</strong></td>
<td width="437" height="64"><input type="text" name="Titulo" id="Titulo" size="50" /></td>
</tr>
<tr>
<td><strong>Intro:</strong></td>
<td height="68"><input type="text" name="Intro" id="Intro" size="50" />
</td>
</tr>
<tr>
<td height="155" colspan="2">
<p><center><strong>Contenido:</strong></center></p>
<p>
<!-- <center><textarea name="Contenido" id="Contenido" cols="40" rows="5"></textarea></center></textarea>-->
<textarea name="Contenido" id="Contenido" ></textarea>
</p> </td>
</tr>
<tr>
<td height="96" colspan="2"><p><strong><center>Imagen:</center></strong>

<center>
<input name='im' type='file' /><br>
<input name='enviar' type='submit' value='Cambiar Imagen' />

</center>
</p></td>
</tr>
<tr>
<td><strong>Pie De Imagen:</strong></td>
<td height="68"><input type="text" name="PieImagen" id="PieImagen" size="50" />
</td>
</tr>
<tr>
<td><strong>Enlace:</strong></td>
<td height="68"><input type="text" name="Enlace" id="Enlace" size="50" />
</td>
</tr>
<tr>
<td><strong>Categoria:</strong></td>
<td height="68"><input type="text" name="Categoria" id="Categoria" size="50" />
</td>
</tr>
<tr>

<td><strong>Tipo:</strong></td>
<td><select name="Tipo" id="Tipo">
<option value="1">Locales</option>
<option value="2">Espectaculos</option>
</select></td>
</tr>
<tr>
<td><strong>Autor:</strong></td>
<td height="68"><input type="text" name="Autor" id="Autor" size="50" />
</td>
</tr>
<tr><td colspan="2"><input type=submit value="Publicar" />
<input name='limpiar' type='reset' value='Limpiar' /></td></tr>
</form></table>
</body>
</html>