D_B Get link Facebook X Pinterest Email Other Apps October 21, 2024 https://gold-poppy-41.tiiny.io Get link Facebook X Pinterest Email Other Apps Comments
College DB css October 22, 2024 * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Arial', sans-serif; background: linear-gradient(135deg, #3498db, #2ecc71); /* Blue to Green Gradient */ display: flex; justify-content: center; align-items: center; height: 100vh; } .form-container { background-color: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 15px; box-shadow: 0 0 30px rgba(255, 255, 255, 0.2); width: 350px; backdrop-filter: blur(10px); } h2 { text-align: center; margin-bottom: 20px; color: #fff; font-weight: bold; text-transform: uppercase; } label { display: block; margin-bottom: 5px; color: #fff; font-weight: bold; letter-spacing: ... Read more
Html October 16, 2024 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Contact Form</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="contact-form-container"> <h2>Contact Us</h2> <form action="connect.php" method="POST"> <label for="name">Name:</label> <input type="text" id="name" name="name" required> <label for="email">Email:</label> <input type="email" id="email" name="email" required> <label for="phone">Phone Number:</label... Read more
College db php October 22, 2024 <?php $server_name="sql12.freesqldatabase.com"; $username="sql12738410"; $password="nS8SynW1uW"; $database_name="sql12738410"; $conn=mysqli_connect($server_name,$username,$password,$database_name); //now check the connection if(!$conn) { die("Connection Failed:" . mysqli_connect_error()); } if(isset($_POST['save'])) { $Name = isset($_POST['Name']) ? $_POST['Name'] : ''; $Technology = isset($_POST['Technology']) ? $_POST['Technology'] : ''; $Year = isset($_POST['Year']) ? $_POST['Year'] : ''; $Roll_no = isset($_POST['Roll_no']) ? $_POST['Roll_no'] : ''; $Phone = isset($_POST['Phone']) ? $_POST['Phone'] : ''; $Message = isset($_POST['Message']) ? $_POST['Message'] : ''; if($Name && $Technology && $Year && $Roll_no && $Ph... Read more
Comments
Post a Comment