Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
5k views

How to define TextBox input restrictions?

How can I restrict TextBox to accept only capital letters, or for example digits, or forbid to put any special character? Sure it's a piece of cake to catch TextInput event and handle the text here, ...
2
votes
1answer
579 views

EditText showing numbers with 2 decimals at all times

I would like to display the input of the EditText fields with two decimals at all times. So when the user enters 5 it will show 5.00 or when the user enters 7.5 it will show 7.50. Besides that I ...
2
votes
3answers
160 views

Codeigniter html to database question

I'm working on a website witch allows users to submit blog posts, however, there seems to be a little problem. I'm using global_xss_filtering (TRUE) so everything will be filtered out. But, when I'm ...
2
votes
1answer
309 views

drupal input filter example

I'm trying to write an input filter that turns everything that starts with http and ends in .mp3 into an audio element, so: http://google.com/file.mp3 -> <audio src='http://google.com/file.mp3' ...
1
vote
1answer
48 views

filtering input from serial port data

I am very very new to Python and I could use your help. I made a small program that reads an analog signal from the serial port and dumps it into a file. However, even though the reading is very ...
1
vote
2answers
105 views

Validating and Sanitizing user input in PHP

Is it considered best practice to use filter_var() and sanitize_var() offered by PHP to filter and sanitize variables, or are there better options? Thank you.
1
vote
1answer
157 views

PHP & MySQL - Making a Filterable Search (example provided)

I'm putting together a practice site utilizing PHP and MySQL to replicate (or closely resemble) this site. As of right now my searchable fields include: Rent (min-max), Type of rental (any, apartment, ...
1
vote
2answers
207 views

php form curse-word input filter solution

I'm building a web app with php and the codeigniter framework, and one of the requirements for the client is to implement a 'swear word' filter on from validation. Does anyone know of any prebuilt ...
1
vote
3answers
279 views

Forbidding SVN commit lacking description

I have an SVN repository and I need the commits to fail if no description is entered. Is this possible to do, preferably server-side? (The users use several different tools for interacting with the ...
0
votes
2answers
122 views

How to set inputfilter for edittext in android for decimal

I have edittext where I want to enter percentage value i.e decimals value, So I want to limit the user to enter only value less than 100 in the editText. Example:1) if he want to enter value more ...
0
votes
2answers
55 views

PHP input Filtering using New 5.2, Want to change from $_POST/GET, how to sanitize these?

I want to use the new PHP 5 > input filtering to sanitize and validate posted data, I understand how to use the filter_input function. But I dont understand exactly what I need to sanitize data for ...
0
votes
1answer
734 views

android:inputType, textCapWords after textCapCharacters doesnt work

I got one EditText and I set Input filter fist I give textCapCharacters and when soft keyboard is shown it works like it should all the input is in upper case (big letters only), then I got another ...
0
votes
3answers
134 views

What to allow in HTML form fields?

I have a few HTML forms, and I am implementing filtering of these fields on the server-side (using Java Servlets), and I was wondering what I should allow, or perhaps what I should disallow. For ...
0
votes
3answers
691 views

PHP - detecting non-English letters and filtering input

There's a comment form where I'd want people to be able to write in foreign languages too. But, for example, my spam-filtering mechanism would block something naiive as the word "été" simply because ...
0
votes
6answers
726 views

Not allow zero in textbox

I need a textbox which only the user can permit to enter integers. But the user can't enter zero. i.e, he can enter 10,100 etc. Not 0 alone. How can I make event in KeyDown?
0
votes
2answers
400 views

How to prevent injections in ASP/VBScript?

What are the best ways (or at least most common ways) in ASP (VBScript) for input handling? My main concerns are HTML/JavaScript injections & SQL injections. Is there some equivalent to PHP's ...
-4
votes
1answer
40 views

php upload an image after modifying its extension [closed]

I'm working my way through input filtering (files) and I just discovered that if you rename a .jpg file into a .png file the MIME type will change automatically to fit the extension. So I was ...