Bij uploaden image een directory map aanmaken op FTP
Het idee is namelijk dat images worden geupload naar:
game/include/game_info/".$data[game_id]."/HIER_HET_PLAATJE
Op de plek van ".$data[game_id]." moet worden gecontroleerd of de map al bestaat en anders moet deze worden aangemaakt. Wie weet wat ik aan onderstaande code moet toevoegen?
NOTE: Mogelijk dat dit script overzichtelijker is http://www.plaatscode.be/142108/ heb deze net getest maar zit met hetzelfde probleem.
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
//Wijzig de pagina
if($_POST['case1']=="paginaedit")
{
$title =mysql_real_escape_string($_POST['title']);
$des =mysql_real_escape_string($_POST['des']);
if ($title=="")
$log="You must enter pagina Name.";
else if ($des=="")
$log="You must Enter pagina Description.";
else{
//$ttl=str_replace(' ', '', $_POST[title]);
$ttl = substr(md5(time()), 0, 10);
//move_uploaded_file($_FILES["uplImage"]["tmp_name"],"paginaimage/" .$ttl. $_FILES["uplImage"]["name"]);
//$imgurl="admin/paginaimage/".$ttl.$_FILES["uplImage"]["name"];
move_uploaded_file($_FILES["uplImage"]["tmp_name"],"game/include/game_info/".$data[game_id]."/" .$ttl. $_FILES["uplImage"]["name"]);
$imgurl="game/include/game_info/".$data[game_id]."/".$ttl.$_FILES["uplImage"]["name"];
$time = time();
$id = $_POST[id];
if($_FILES[uplImage][name]=="")
{
$sql = mysql_query("update pagina set title ='".$title."', description='".$des."' where id='".$id."'");
}
else
{
$sql = mysql_query("update pagina set title='".$title."', description='".$des."', image='".$imgurl."' where id='".$id."'");
}
?><script>window.location.href="pagina-edit.php?id=<?php echo $id;?>";</script><?php
}
}
?>
//Wijzig de pagina
if($_POST['case1']=="paginaedit")
{
$title =mysql_real_escape_string($_POST['title']);
$des =mysql_real_escape_string($_POST['des']);
if ($title=="")
$log="You must enter pagina Name.";
else if ($des=="")
$log="You must Enter pagina Description.";
else{
//$ttl=str_replace(' ', '', $_POST[title]);
$ttl = substr(md5(time()), 0, 10);
//move_uploaded_file($_FILES["uplImage"]["tmp_name"],"paginaimage/" .$ttl. $_FILES["uplImage"]["name"]);
//$imgurl="admin/paginaimage/".$ttl.$_FILES["uplImage"]["name"];
move_uploaded_file($_FILES["uplImage"]["tmp_name"],"game/include/game_info/".$data[game_id]."/" .$ttl. $_FILES["uplImage"]["name"]);
$imgurl="game/include/game_info/".$data[game_id]."/".$ttl.$_FILES["uplImage"]["name"];
$time = time();
$id = $_POST[id];
if($_FILES[uplImage][name]=="")
{
$sql = mysql_query("update pagina set title ='".$title."', description='".$des."' where id='".$id."'");
}
else
{
$sql = mysql_query("update pagina set title='".$title."', description='".$des."', image='".$imgurl."' where id='".$id."'");
}
?><script>window.location.href="pagina-edit.php?id=<?php echo $id;?>";</script><?php
}
}
?>
Gewijzigd op 27/01/2013 14:00:02 door Enrique Gervaso
Er zijn nog geen reacties op dit bericht.