View Single Post
ישן 09-11-07, 21:07   # 6
Nils
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Nov 2007
הודעות: 85

Nils לא מחובר  

לא עובד :S

PHP קוד:
<?php

$target_path 
"up/";

$file_size $_FILES['uploadedfile']['size'];

$limit_size "20000";

$url='http://84.94.230.229/~yairsh/upload/up/';

$target_path $target_path basename$_FILES['uploadedfile']['name']); 

if(
move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {

if (
$limit_size $file_size) {


echo 
"הקובץ הועלה בהצלחה!!
:קישור לקובץ
<a href="
.$url.$_FILES['uploadedfile']['name'].">".$url.$_FILES['uploadedfile']['name']."<a/>";

}

} else{
    echo 
"There was an error uploading the file, please try again!";
}


?>

הוא לא מציג כלום,דף ריק.


סליחה התבלבלתי בסימן!!! עשיתי <
זה עובד [= תודה רבה [=

Last edited by Nils; 09-11-07 at 21:10..
  Reply With Quote