Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Form couldn’t be sent even out of wordpress plate form would you please help, when I click on submit

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #32141
    hamanine
    Member
    
    $nameError="Not yet";
    if (isset($_POST)){
    if (trim($_POST)==='') {
    $nameError="Please enter your name.";
    $hasError=true;
    } else {
    $name=trim($_POST);
    }
    if (!is_email($_POST)) {
    $nameError="Please Enter the right email";
    $hasError=true;
    } else {
    $email=is_email($_POST);
    }
    if (trim($_POST)==='') {
    $nameError="Please enter your nationality";
    $hasError=true;
    } else {
    $nationality=trim($_POST);
    }


    if (trim($_POST)==='') {

    $nameError="Please enter your nationality";
    $hasError=true;

    } else {

    $message=trim($_POST);

    }
    $user_photo=bloginfo('url')."/wp-content/uploads/".basename($_FILES);
    $user_cv=bloginfo('url')."/wp-content/uploads/".basename($_FILES);


    if (move_uploaded_file($_FILES,$user_photo)){
    echo "Photo is uploaded";
    } else {
    echo "photo wasnt uploaded successfully";
    $hasError= true;
    }

    if (move_uploaded_file($_FILES,$user_cv)){
    echo "Cv is uploaded";
    } else {
    echo "CV wasnt uploaded successfully";
    $hasError= true;
    }

    global $wpdb;
    if (!$hasError) {
    $wpdb->query($wpdb->prepare("
    INSERT INTO $wpdb->jobseekers
    (name, email, nationality, photo, cv, message)
    VALUES(%s, %s, %s, %s, %s, %s, %s)",
    $name, $email, $nationality, $user_photo, $user_cv, $message));

    }

    } else {
    $nameError="Not Sent 12";
    echo "

    Not submitted

    ";


    }

    ?>





























Viewing 1 post (of 1 total)
  • The forum ‘Back End’ is closed to new topics and replies.