Hola Alguien que sepa de Jquery validator tengo una pequeña duda
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúsource 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for javascript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
group :assets do
gem 'less-rails-bootstrap'
end
# Use jquery as the javascript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
<form method="post" enctype="multipart/form-data" name="form1" id="form1">
<table width="800px" border="0" cellspacing="0" cellpadding="2" align="center">
<thead>
<tr>
<th colspan="4">.CREACION DE USUARIOS DE MENSAJERIA.</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Nombre:</strong></td>
<td><input name="nombres" type="text" id="nombres" maxlength="250" value="<?=eliminarInvalidos($_POST["nombres"]); ?>" /></td>
</tr>
<tr>
<td><strong>E-mail:</strong></td>
<td><input name="email" type="text" id="email" maxlength="250" value="<?=eliminarInvalidos($_POST["email"]); ?>" /></td>
</tr>
<tr>
<td><strong>Celular:</strong></td>
<td><input name="celular" type="text" id="celular" maxlength="250" value="<?=soloNumeros($_POST["celular"]); ?>" /></td>
</tr>
<tr>
<td><strong>Grupos:</strong></td>
<td><?
$sql= "SELECT sms_grupos.* ";
$sql.=" FROM sms_grupos";
$sql.=" ORDER BY nombre asc ";
$PSN->query($sql);
$num=$PSN->num_rows();
if($num > 0)
{
while($PSN->next_record())
{
?><input type="checkbox" name="listaasociar[]" value="<?=$PSN->f('id'); ?>"><?=$PSN->f('nombre'); ?><br /><?
}
}
?>
</td>
</tr>
</tbody>
</table>
<input type="hidden" name="funcion" id="funcion" value="" />
<br />
<hr color="#0000FF" width="800px" />
<br />
<center><input type="button" name="button" onclick="generarForm()" value="Crear Usuario" style="background-color:#FFFFFF;border-color:#0000FF;color:#006600;font-weight:bold"></center>
<input type="button" value="Agregar nuevo formulario" onClick="addInput('dynamicInput');">
</form>