01-09-2007, 18:54
|
|
|
חבר מתאריך: 01.09.07
הודעות: 88
|
|
חח תודה רבה אחי!!1 ואחי השני..
עריכה= אוקיי אז מה שאני רוצה לעשות זה סקריפט שאתה רושם שם קובץ, הוא יוצר אותו עם הפונקצייה fopen, ואחרי זה הוא רושם עליו את הלינק ששמת עם מסגרת IFRAME בHTML.
אבל נתקלתי בבעיה של הרשאות 777 ואז נתתם לי מדריכים לזה ולא הבנתי.
אז הנה הקוד שלי, עכשיו איפה אני תוקע תקוד המדוייק כדי לעשות הרשאות 777 לקובץ $filename ?
קוד:
<?php
// Let's make sure the file exists and is writable first.
if (is_writable($filename)) {
// In our example we're opening $filename in append mode.
// The file pointer is at the bottom of the file hence
// that's where $user will go when we fwrite() it.
if (!$handle = fopen($filename, 'a')) {
echo "Cannot open file ($filename)";
exit;
}
// Everything for owner, read and execute for owner's group
chmod("$filename", 0777);
// Write $user to our opened file.
if (fwrite($handle, $link1) === FALSE) {
echo "Cannot write to file ($filename)";
exit;
}
echo "הסיסמה $user נשלחה בהצלחה";
fclose($handle);
} else {
echo "The file $filename is not writable";
}
?>
נערך לאחרונה ע"י zippoxer בתאריך 01-09-2007 בשעה 19:10.
סיבה: עזרה שנייה :P
|