Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. <select name="array[]" id="array" multiple>
  2. <option value="Val1" <?php if( @in_array( 'Val1', @$_POST['array'] ) ) { echo 'selected="selected"'; } ?>>Val1</option>
  3. <option value="Val2" <?php if( @in_array( 'Val2', @$_POST['array'] ) ) { echo 'selected="selected"'; } ?>>Val2</option>
  4. </select>
  5. <script type="text/javascript">
  6. var arr = new LiveValidation('array', { validMessage: ' ', wait: 500});
  7. arr.add( Validate.Presence, { failureMessage: ' ' } );
  8. arr.add( Validate.Exclusion, { within: [ "" ], failureMessage: ' ' } );
  9. </script>
  10.  
  11. <option value="Val1" <?php if( @in_array( 'Val1', @$_POST['array'] ) ) { echo 'selected="selected"'; } ?>>Val1</option>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement