Posts by Nuno Costa • 134 points
2 posts
-
1
votes1
answer103
viewsA: PHP Form / File upload and upload other fields at once
I noticed that there is one parenthesis left on this line if(move_uploaded_file($_FILES['foto']['tmp_name'], $uploadfile)) {} In addition the contents of the file are placed in the array $_FILES.…
-
1
votes6
answers5628
viewsA: Calculate age in years using javascript
Check this function. I think it does what you want. I’m not sure about the date format. function getAge(dateString) { var today = new Date(); var birthDate = new Date(dateString); var age =…