Advertising
advertising
related pastes to tag 'forms'
- 1978456 - ZenStudio GUI Alpha: forms fezwizzard0pandamicro frameworkguiwpfwindows
-
- using System;
- #if AVOID_GENERICS
- using System.Collections;
- using ConstantValueSource_bool = ZenStudio.Gui.ConstantValueSource;
- #else
- using System.Collections.Generic;
- using System.Linq;
- using ConstantValueSource_bool = ZenStudio.Gui.ConstantValueSource<bool>;
- 1474004 - NiKo: jquery html forms
-
- $('input[type=password]').each(function(){
- var value = $(this).attr('value');
- var id = $(this).attr('id');
- $(this).hide();
- var newField = $(this).clone();
- $(newField).attr('type', 'text');
- $(newField).attr('id', id + '__display');
- $(newField).insertAfter($(this));
- 755639 - Adcuz: php post forms
-
- <?php if($_GET['mode'] == "send"){
- if($_POST['nameUser'] == ""){} else{
- //#######################################################
- //#PHP CONTACT FORM BY ADCUZ.CO.UK #
- //#Licensed under the GPL, please re-distribute #
- //#If you use this script, I would appreciate credit #
- //#but it is not required! #
- //#######################################################