📁 File Manager
🏠 /
/
home
/
u857492117
/
domains
/
mangaldaicollege.org
/
public_html
Dosya Düzenle: url_d_code.php
<?php session_start(); include 'connect.php'; if(isset($_POST['submit'])) { echo $title = $_POST['title']; echo $DOJ = $_POST['doe']; $loc = $_POST['locations']; $name =basename( $_FILES['Tadd_F']['name']); $t_name= $_FILES["Tadd_F"]["tmp_name"]; $dir= $loc; if(move_uploaded_file($t_name,$dir.'/'.$name) ) { echo "Document uploaded yes"; } else { echo "nooooo"; } $doc1= $dir."/".$name; $ins = "insert into urlmake values(NULL,'$title','$doc1','$DOJ')"; if (mysqli_query($con,$ins)){ header("Location:mldclgadminpanel/urlcreate.php"); } else{ echo "not selected data"; } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>Untitled Document</title> </head> <body> </body> </html>
💾 Kaydet
İptal