Can't get Images/Text to upload to Database
How do I connect these to my database (local host). Iv'e tried many youtube videos but not joy. This is my coding without the database connection which is what I'm struggling with. <!DOCTYPE html> <html> <head> <title>Plane Crazy</title> </head> <body> <center> <h1>Upload Image</h1> <form action="" method="POST" enctype="multipart/form-data"> <label>Select Image</label><br> <input type="file" name="image" id="image"/><br> <label>Enter Aircraft</label><br> <input type="text" name="aircraft" placeholder="Enter Aircraft"/><br> <label>Enter Airline</label><br> <input type="text" name="airline" placeholder="Enter Airline"/><br> <label>Enter Reg</label><br> <input type="text" name="reg" placeholder="Enter Reg"/><br> <label>Enter Airport</label><br> <input type="text" name="airport" placeholder="Enter Airport"/><br> <input type="submit" name="upload" value="upload image" /><br> </form> </center> </body> </html>>