1
PHPを使用してあるフォルダから別のフォルダに画像をコピーしようとしています。 画像はうまく動いていますが、画像を開くときに画像が表示されません。あるフォルダから別のフォルダにコピー中に画像が表示されない
アイデア?
ありがとうございます。
以下は私のコードです。
if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'image_copy') {
$image = $_POST['image'];
//name of file to be copied
$img = $image;
//read the file
$fp = fopen('files/post/' . $img, 'r') or die("Could not contact $img3");
$page_contents = "";
$new_text = fread($fp, 100);
$page_contents = $new_text;
//This moves you from the current directory user to the images directory in the new user's directory
chdir("files/profile");
//name of your new file
$newfile = $image;
//create new file and write what you read from old file into it
$fd = fopen($newfile, 'w');
fwrite($fd, $page_contents);
//close the file
fclose($fd);
exit;
}
あなたが使用している ''のHTMLコードを表示することはできますか? – Abela
オクラホマ@Abela – sradha