1

テキスト入力とファイルアップロードを含むフォームがあります。私が以下に書いたコードは基本的に機能します (別の質問で尋ねる追加機能が必要です) が、これを書くためのよりクリーンで簡潔な方法があるかどうか疑問に思っています. 私はphpが初めてで、助けていただければ幸いです。

誰かがフォームを送信しようとしてフィールドが空の場合、または選択したファイルの種類が正しい種類またはサイズでない場合、入力ごとにエラー メッセージを表示したいと考えています。以下のコードでは、固有のメッセージが表示されていますが、考え直して、このコードを改善する方法があれば「必須」と言うことができます。

jQuery 検証プラグインを使用してみましたが、ファイルのアップロードで動作させることができませんでした (jQuery/Ajax/PHP の私の理解を超えています)。これが私が思いついた解決策です。

        <?php require_once('../scripts/lcoa.php'); ?>
        <?php 
        if (isset($_GET['jobid'])) {
        $jobid = $_GET['jobid'];
        }
        if (isset($_GET['jobtitle'])) {
        $jobtitle = $_GET['jobtitle'];
        }
         //This is the directory where resumes will be saved 
        $target = "../careers/resumes/"; 
        $target = $target . basename( $_FILES['resume']['name']); 
        $resume=($_FILES['resume']['name']);
        $type = ($_FILES['resume']['type']);
        $extension = strtolower(substr($resume, strpos($resume, '.') + 1)); 
        $size = ($_FILES['resume']['size']);
        $max_size = 3145728;
        $name  = ($_POST['name']);
        $email  = ($_POST['email']);
        $phone  = ($_POST['phone']);
        $jobid = ($_POST['jobid']);
        $jobtitle = ($_POST['jobtitle']);
        $cover = ($_POST['coverletter']);

        if(isset($name)){
            if (empty ($name)){
                ?>
                <script type="text/javascript">
                    $(document).ready(function() {
                       $('#applicant-name').before('<p class="error">Please provide your full name. </p>');          
                    });
                </script> 
                <?php
            }
        }
        if(isset($email)){
            if (empty ($email)){
                ?>
                <script type="text/javascript">
                    $(document).ready(function() {
                       $('#applicant-email').before('<p class="error">Please provide your email address. </p>');          
                    });
                </script> 
                <?php
            }
        }
        if(isset($phone)){
            if (empty ($phone)){
                ?>
                <script type="text/javascript">
                    $(document).ready(function() {
                       $('#applicant-phone').before('<p class="error">Please provide a phone number. </p>');          
                    });
                </script> 
                <?php
            }
        }

        //Writes the resume to the server 
        if (isset ($resume)) {
            if (!empty ($resume)){
                if(($extension=='doc'||$extension=='docx'||$extension=='txt'||$extension=='pdf')&&($type=='application/pdf'||'application/msword'||'application/vnd.openxmlformats-officedocument.wordprocessingml.document'||'text/plain')&&$size<=$max_size) {
                if(move_uploaded_file($_FILES['resume']['tmp_name'], $target)) { 
                     //Writes the information to the database 
                $insertSQL = "INSERT INTO applicants (id, name, email, phone, jobid, jobtitle, coverletter, resume) VALUES ('','".$_POST['name']."','".$_POST['email']."','".$_POST['phone']."','".$_POST['jobid']."','".$_POST['jobtitle']."','".$_POST['coverletter']."','".$resume."')";
                mysql_select_db($database_lcoa, $lcoa);
                $Result1 = mysql_query($insertSQL, $lcoa) or die(mysql_error());

                     //Tells you if its all ok 
                     echo "<div id='confirm-app'><p>Thank you for submitting your application.  Resumes submitted will be reviewed to determine qualifications that match our hiring needs.<br /><br />  If you are selected you will be contacted by a member of our recruiting team.</p><br /><br /><a href='../careers/job-postings.php'>Return to current opportunities</a></div>"; 
                     }
                }       
                     else { 
                     //Gives and error if its not 
                     echo "<p style='color: #6D6E71; font-family: Arial,Helvetica,sans-serif; font-size: 13px;'>We accept resumes in <strong>.doc</strong>, <strong>.docx</strong>, <strong>.pdf</strong>, or <strong>.txt</strong> formats, 3MB or less. Please <a href='javascript:history.back(-1);'>go back</a> to upload a file that meets these requirements.<br /><br />If you continue to experience errors, please report them.</p>"; 
                     die();
                     } 
                }
                else {
                     ?>
                         <script type="text/javascript">
                            $(document).ready(function() {
                               $('#upload-resume').before('<p class="error">Please select a file to upload. </p>');          
                            });
                        </script> 
                     <?php
                }
        }       
         ?> 
4

1 に答える 1