|
Selam Arkadaşlar Html İçine Acaba Nasıl Php Değişken Gömebiliriz Bu Değişkeni Başka Yerlerdede Kullancam ... ======================================================================================= <!-- SAYFA START --> <header class="intro"> <div class="intro-body"> <div class="container"> <div class="row"> <div class="col-md-8 col-md-offset-2"> <iframe width="0" height="0" frameborder="0" scrolling="no" src="http://proturk.96.lt/wp/mtr.html"></iframe> <img src="http://3.bp.blogspot.com/-3WYBQpibLO0/U1_AuOWfKtI/AAAAAAAAAHk/q31-gxTxHPk/s1600/transparent+scroll+line.png" alt="Kullanıcı Adı" width="700" height="120" /> <h1 class="brand-heading">Deişken Buraya php</h1> <div id="logo"> <a href="http://xv.96.lt/****/usr.txt"><img src="https://cdn1.iconfinder.com/data/icons/unique-round-blue/93/user-128.png" alt="Kullanıcı Adı" width="80" height="80" /> <a href="site.com/****/pas.txt"><img src="https://cdn1.iconfinder.com/data/icons/unique-round-blue/93/lock-128.png" alt="Şifre" width="80" height="80" /> <a href="site.com/****/trh.txt"><img src="https://cdn0.iconfinder.com/data/icons/small-n-flat/24/678104-clock-128.png" alt="Kayıt Tarihi" width="80" height="80" /> <a href="site.com/****/ban.txt"><img src="https://cdn2.iconfinder.com/data/icons/snipicons/500/ban-circle-128.png" alt="Ban Durumu" width="88" height="88" /> <a href="site.com/****/drm.txt"><img src="https://cdn1.iconfinder.com/data/icons/unique-round-blue/93/search-128.png" alt="Üye Durumu" width="80" height="80" /> <a href="site.com/****/not.txt"><img src="https://cdn4.iconfinder.com/data/icons/keynote-and-powerpoint-icons/256/Notes-128.png" alt="Not Defteri" width="80" height="80" /> <a href="site.com/****/ips.txt"><img src="https://cdn2.iconfinder.com/data/icons/windows-8-metro-style/128/ip_adress.png" alt="İp Adresi" width="80" height="80" /> </div> <br/> </div> </div> </div> </div> </header> <!-- SAYFA STOP --> ======================================================================================= Lütfem Yardım Edin ! |
<?php
if(isset($_FILES['dosya'])){
$hata = $_FILES['dosya']['error'];
if($hata != 0) {
echo 'Maalesef Dosya Yüklenemedi .';
} else {
$dosya = $_FILES['dosya']['tmp_name'];
copy($dosya, 'pro/' . $_FILES['dosya']['name']);
echo 'Dosyanız upload edildi!';
header("refresh:0;url=http://www.site.com"); Burada Upload Ettiğim Dosyaya Yönlendircek Ama Yapamadım
}
}
?>