Created
November 28, 2013 14:14
-
-
Save tayfunerbilen/7692507 to your computer and use it in GitHub Desktop.
verot.net basit kullanımı
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require 'class.upload.php'; | |
if ( isset( $_POST[ 'submit' ] ) ) { | |
$image = new Upload( $_FILES[ 'image' ] ); | |
if ( $image->uploaded ) { | |
// upload klasörüne değişiklik yapmadan kayıt et | |
$image->Process('upload/'); | |
if ( $image->processed ){ | |
print 'resim yükleme işlemi başarılı!'; | |
} else { | |
print 'Bir sorun oluştu: '.$image->error; | |
} | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment