היי,
איך בקוד הבא אני מאפשר לעלות רק סיומת של JPG לדוגמא
PHP קוד:
<?php if (isset($_POST['check_if_press']) && $_POST['check_if_press'] == "send_file")
{
if (!empty($_FILES['my_file']['name'])) { $dir = getcwd()."/"; move_uploaded_file($_FILES['my_file']['tmp_name'] , $dir.$_FILES['my_file']['name']); echo "Weldone, You have been uploaded the file."; }