i have page?vesion=1.0.1
how can i make $_GET['version'] secure by somthing like
$version = (float) $_GET['version'];
but this will work if it 1.2 or 1.0 and will not work if its 1.0.1
|
i have how can i make $_GET['version'] secure by somthing like
but this will work if it 1.2 or 1.0 and will not work if its 1.0.1 |
|||
|
|
|
Use a regex such as
I could help you more if I knew exactly what you're trying to accept and what to reject. edit: replace the 3 in the regex with the number of secondary version numbers; with 3 0.1.2.3 is allowed, but 0.1.2.3.4 is not |
|||||||||||
|