المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : مشكلة جد عويصة.... من فضلك المساعدة



admin
11-01-2013, بتوقيت غرينيتش 01:39 PM
http://www.dzbatna.com/images/icons/frown.gif ظ…ط´ظƒظ„ط© ط¬ط¯ ط¹ظˆظٹطµط©.... ظ…ظ† ظپط¶ظ„ظƒ ط§ظ„ظ…ط³ط§ط¹ط¯ط© (http://www.dzbatna.com/t958333/)



السلام عليكم
-----------------
عندي مشكل بال php جد عويص
حوالي يوم وأنا أحوال لكن للأسف لا حل http://www.dzbatna.com/images/smilies/no.gif
------------------------
أرجو أنكم تعينوني ......
-----------------------------------
المشكل : عندي كود code رفع صور
وأنا أريد أنه بعدما يختار المستخدم الصور من جهازه عبر فورم الملفات
<input id=&quot;file2&quot; type=&quot;file&quot; name=&quot;file[]&quot;>
------------------------



بعدها عندما يضغط رفع يذهب لصفحة أخرى بها كود code الرفع
الكود code :
رمز PHP:

<code style="white-space:nowrap"> <code> <?php

// filename: multiple.upload.processor.php

// first let's set some variables

// make a note of the current working directory, relative to root.
$directory_self = str_replace(basename($_SERVER&#91;'PHP_SELF'&#93;), '', $_SERVER&#91;'PHP_SELF'&#93;);

// make a note of the directory that will recieve the uploaded files
$uploadsDirectory = $_SERVER&#91;'DOCUMENT_ROOT'&#93; . $directory_self . 'uploaded_files/';

// make a note of the location of the upload form in case we need it
$uploadForm = 'http://' . $_SERVER&#91;'HTTP_HOST'&#93; . $directory_self . 'multiple.upload.form.php';

// make a note of the location of the success page
$uploadSuccess = 'http://' . $_SERVER&#91;'HTTP_HOST'&#93; . $directory_self . 'multiple.upload.success.php';

// name of the fieldname used for the file in the HTML form
$fieldname = 'file';

//echo'<pre>';print_r($_FILES);exit;



// Now let's deal with the uploaded files

// possible PHP upload errors
$errors = array(1 => 'php.ini max file size exceeded',
2 => 'html form max file size exceeded',
3 => 'file upload was only partial',
4 => 'no file was attached');

// check the upload form was actually submitted else print form
isset($_POST&#91;'submit'&#93;)
or error('the upload form is neaded', $uploadForm);

// check if any files were uploaded and if
// so store the active $_FILES array keys
$active_keys = array();
foreach($_FILES&#91;$fieldname&#93;&#91;'name'&#93; as $key => $filename)
{
if(!empty($filename))
{
$active_keys&#91;&#93; = $key;
}
}

// check at least one file was uploaded
count($active_keys)
or error('No files were uploaded', $uploadForm);

// check for standard uploading errors
foreach($active_keys as $key)
{
($_FILES&#91;$fieldname&#93;&#91;'error'&#93;&#91;$key&#93; == 0)
or error($_FILES&#91;$fieldname&#93;&#91;'tmp_name'&#93;&#91;$key&#93;.': '.$errors&#91;$_FILES&#91;$fieldname&#93;&#91;'error'&#93;&#91;$key&#93;&#93;, $uploadForm);
}

// check that the file we are working on really was an HTTP upload
foreach($active_keys as $key)
{
@is_uploaded_file($_FILES&#91;$fieldname&#93;&#91;'tmp_name'&#93;&#91; $key&#93;)
or error($_FILES&#91;$fieldname&#93;&#91;'tmp_name'&#93;&#91;$key&#93;.' not an HTTP upload', $uploadForm);
}

// validation... since this is an image upload script we
// should run a check to make sure the upload is an image
foreach($active_keys as $key)
{
@getimagesize($_FILES&#91;$fieldname&#93;&#91;'tmp_name'&#93;&#91;$key &#93;)
or error($_FILES&#91;$fieldname&#93;&#91;'tmp_name'&#93;&#91;$key&#93;.' not an image', $uploadForm);
}

// make a unique filename for the uploaded file and check it is
// not taken... if it is keep trying until we find a vacant one
foreach($active_keys as $key)
{
$now = time();
while(file_exists($uploadFilename&#91;$key&#93; = $uploadsDirectory.$_FILES&#91;$fieldname&#93;&#91;'name'&#93;&#91;$key &#93;))
{
$now++;
}
}

// now let's move the file to its final and allocate it with the new filename
foreach($active_keys as $key)
{
@move_uploaded_file($_FILES&#91;$fieldname&#93;&#91;'tmp_name' &#93;&#91;$key&#93;, $uploadFilename&#91;$key&#93;)
or error('receiving directory insuffiecient permission', $uploadForm);
}

// If you got this far, everything has worked and the file has been successfully saved.
// We are now going to redirect the client to the success page.
header('Location: ' . $uploadSuccess);

// make an error handler which will be used if the upload fails
function error($error, $location, $seconds = 5)
{
header("Refresh: $seconds; URL=\"$location\"");
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"'."\n".
'"http://www.w3.org/TR/html4/strict.dtd">'."\n\n".
'<html lang="en">'."\n".
' <head>'."\n".
' <meta http-equiv="content-type" content="text/html; charset=iso-8859-1">'."\n\n".
' <link rel="stylesheet" type="text/css" href="stylesheet.css">'."\n\n".
' <title>Upload error</title>'."\n\n".
' </head>'."\n\n".
' <body>'."\n\n".
' <div id="Upload">'."\n\n".
' <h1>Upload failure</h1>'."\n\n".
' <p>An error has occured: '."\n\n".
' <span class="red">' . $error . '...</span>'."\n\n".
' The upload form is reloading</p>'."\n\n".
' </div>'."\n\n".
'</html>';
exit;
} // end error handler

?> </code> </code>

--------------------
وأيضا... بعدما يتم الرفع ... يتم استخلاص أسماء الملفات المرفوعة ويتم حفظها إلى قاعدة البيانات
----------------
المشكل أن في هذا السكربت (الكود code التالي) الخاص بادخال الملفات
رمز PHP:

<code style="white-space:nowrap"> <code> <form id="Upload" action="upload.php" enctype="multipart/form-data" method="post">

<h1><font size="3">Upload</font></h1>

<p>
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $max_file_size ?>">
</p>
<input type="hidden" name="directory" id="dir">
<p>
<label for="file1">File to upload:</label>
<input id="file1" type="file" name="file&#91;&#93;">
</p>

<p>
<label for="file2">File to upload:</label>
<input id="file2" type="file" name="file&#91;&#93;">
</p>

<p>
<label for="file3">File to upload:</label>
<input id="file3" type="file" name="file&#91;&#93;">
</p>
<p>
<label for="file4">File to upload:</label>
<input id="file4" type="file" name="file&#91;&#93;">
</p>
<p>
<label for="file5">File to upload:</label>
<input id="file5" type="file" name="file&#91;&#93;">
</p>
<p>
<label for="file6">File to upload:</label>
<input id="file6" type="file" name="file&#91;&#93;">
</p>
<p>
<label for="file7">File to upload:</label>
<input id="file7" type="file" name="file&#91;&#93;">
</p>
<p>
<label for="file8">File to upload:</label>
<input id="file8" type="file" name="file&#91;&#93;">
</p>
<p>
<label for="file9">File to upload:</label>
<input id="file9" type="file" name="file&#91;&#93;">
</p>
<p>
<label for="file10">File to upload:</label>
<input id="file10" type="file" name="file&#91;&#93;">
</p>

<p>
<label for="submit">Press to...</label>
<input id="submit" type="submit" name="submit" value="Upload">
</p>

</form> </code> </code>

----------------------
في اسم الفيلد مكتوب: file[]
توجد تلك العلامتين : [ ]
وإذا تم حذفهما من الاسم لا يعمل السكربت ......
جربت غيرت الاسم إلى img مثلا
وفي الصفحة التالية عملت :
<?php echo $_FILES['img']['name'] ?>
لكن للأسف لا رتفع الصورة لكن يجلب الاسم
----------------------
وإذا عملت <?php echo $_FILES[$fieldname]['name'][$key]?>
يكون في مكان الاسم : array
-------------------------------------------
جد محتاج الحل اخواني الكرام
بانتظاركم ...... أرجو اعانتي بسرعة







ألعاب الأندرويد مجانا و حصريا (http://www.apotox.info/forum)




https://fbcdn-sphotos-d-a.akamaihd.net/hphotos-ak-ash4/482113_236967293114455_1193518507_n.png (http://www.dzbatna.com)
©المشاركات المنشورة تعبر عن وجهة نظر صاحبها فقط، ولا تُعبّر بأي شكل من الأشكال عن وجهة نظر إدارة المنتدى (http://www.dzbatna.com)©

استعمل مربع البحث في الاسفل لمزيد من المواضيع


سريع للبحث عن مواضيع في المنتدى