Fout in function
els
20/09/2009 19:56:00Hoi, Wat is er fout in onderstaande code, als ik de code uitvoer moet de image.jpg opgeslagen worden in de map test, maar dat doet hij niet, het bestand wordt opgeslagen als test/image.jpg
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
function saveImage($path, $localPath = 'test\\')
{
set_time_limit(0);
$path = $_POST['foto'];
if (!file_exists($localPath))
{
mkdir($localPath);
}
$localFile = $localPath.basename($path);
if (!copy($path, $localFile))
{
echo "<font color=red>Failed to copy $path</font><br>";
}
else
{
echo '<font color=blue>Successfully copied<img border="0" src="'.$path.'"></font><br>';
}
?>
function saveImage($path, $localPath = 'test\\')
{
set_time_limit(0);
$path = $_POST['foto'];
if (!file_exists($localPath))
{
mkdir($localPath);
}
$localFile = $localPath.basename($path);
if (!copy($path, $localFile))
{
echo "<font color=red>Failed to copy $path</font><br>";
}
else
{
echo '<font color=blue>Successfully copied<img border="0" src="'.$path.'"></font><br>';
}
?>
Gewijzigd op 01/01/1970 01:00:00 door Els