Tema: JqTransform
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/09/2011, 10:18
leoangels
 
Fecha de Ingreso: marzo-2011
Ubicación: Zacatecas
Mensajes: 59
Antigüedad: 13 años, 2 meses
Puntos: 0
Respuesta: JqTransform

Gracias por responder,me aplica el estilo pero en el formulario el select no sale bien,pero ejecutando el archivo que seria notas.php si aparece el select ya vi el css de toda la interfaz y no encuentro el problema y no funciona el boton publicar o limpiar...

<?php session_start();
include('Seguridad.php');
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 href="css/Estilo.css" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="jqtransform.css" type="text/css" media="all" />
<script src="jquery.js"></script>
<script src="jquery.jqtransform.js"></script>
<script>
$(function(){
$('#form').jqTransform({imgPath:'img/'});
});
</script>
</head>
<p>&nbsp;</p>
<body>
<center>
<div id="form">
<div id="tablenotas">
<table width="631" border="0">

<form id="form1" name="form1" method="post" class="jqtransform" action="procesanoticia.php" enctype='multipart/form-data'>

<tr>
<br>
<td width="78"><strong>Titulo:</strong></td>
</br>
<td width="437" height="42"><input type="text" name="Titulo" id="Titulo" size="50" />
</td>

</tr>

<tr>
<td><strong>Intro:</strong></td>
<td height="45"><input type="text" name="Intro" id="Intro" size="50" />

</td>

</tr>

<tr>
<td><strong>Contenido:</strong></td>

<td height="123" colspan="2">
<textarea name="Contenido" id="Contenido" rows="5" cols="60">



</textarea>
</td>

</tr>

<tr>
<td><strong>Imagen:</strong></td>

<td>
<center> <input name='im' id='im' type='file' /></center>
</td>

</tr>
<tr>
<td><strong>Pie De Imagen:</strong></td>
<td height="47"><input type="text" name="PieImagen" id="PieImagen" size="50" />
</td>
</tr>
<tr>
<td><strong>Enlace:</strong></td>
<td height="46"><input type="text" name="Enlace" id="Enlace" size="50" />
</td>
</tr>

<tr><td><strong>Tipo:</strong></td>
<td><select name="Tipo" id="Tipo">
<option value="Locales">Locales</option>
<option value="Nacionales">Nacionales</option>
<option value="Internacionales">Internacionales</option>
<option value="Espectaculos">Espectaculos</option>
</select></td>

</tr>
<tr>
<td><strong>Autor:</strong></td>
<td height="39"><input type="text" name="Autor" id="Autor" size="50"/>
</td>
</tr>
<tr>
<td colspan="2">

<div align="center">
<input type="submit" id="publicar" name="publicar" value="Publicar" />
<input type="reset" id="limpiar" name='limpiar' value='Limpiar' />

</div></td>
</tr>
</form></table></div></div></center>


</body>
</html>