Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. RicardoP

    I am trying to write a code to archive jobs from my job page to my archive section in mysql.

    if (isset($_SESSION['loggedin']) && $_SESSION['loggedin'] == true) { $stmt = $pdo-> prepare("SELECT * FROM job INSERT INTO Archive SET id = 'archived' WHERE id =:id"); $stmt->execute(['id' => $_POST['id']]);
Back
Top Bottom