XIM Postado Outubro 25, 2012 Denunciar Share Postado Outubro 25, 2012 Olá amigos,Boa noite,estou precisando de uma jauda de vocês,tenho um codigo aqui php,ele exclui na moral no banco de dado os dados referente a foto,mas não exclui a foto da pasta foto,não manjo bem php,se pudrem me ajudar agradeceria.eis o codigo:<?php include "topo.php";?><?php require_once('../Connections/conexao.php'); ?><?phpfunction GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = ""){ $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue; switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": $theValue = ($theValue != "") ? intval($theValue) : "NULL"; break; case "double": $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL"; break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue;}if ((isset($_GET['cod_prod'])) && ($_GET['cod_prod'] != "")) { $deleteSQL = sprintf("DELETE FROM produtos WHERE cod_prod=%s", GetSQLValueString($_GET['cod_prod'], "int")); mysql_select_db($database_conexao, $conexao); $Result1 = mysql_query($deleteSQL, $conexao) or die(mysql_error()); $deleteGoTo = "excluir_prod2.php"; if (isset($_SERVER['QUERY_STRING'])) { $deleteGoTo .= (strpos($deleteGoTo, '?')) ? "&" : "?"; $deleteGoTo .= $_SERVER['QUERY_STRING']; } echo "<br>"; echo "<center><b>Operação realizada com sucesso!!!</b></center>";}?> Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 dedas Postado Outubro 26, 2012 Denunciar Share Postado Outubro 26, 2012 Rapaz, use a função unlink(). Se tiver problema com permissão na pasta, procure pela função chmod(). Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 XIM Postado Outubro 27, 2012 Autor Denunciar Share Postado Outubro 27, 2012 Rapaz, use a função unlink(). Se tiver problema com permissão na pasta, procure pela função chmod().amigo.~~n sei como fazer isso poderia me ajudar? Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 ESerra Postado Outubro 27, 2012 Denunciar Share Postado Outubro 27, 2012 Primeiro pesquise por CRUD, assim você aprenderá a utilizar bancos de dados, depois:php.net/unlink Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 dedas Postado Outubro 28, 2012 Denunciar Share Postado Outubro 28, 2012 (editado) Vo te passar o código pra você não atrasar seu projeto/estudo, mas não se esqueça de fazer o que o nosso amigo Eserra sugeriu.<?php include "topo.php";?> <?php require_once('../Connections/conexao.php'); ?> <?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = ""){ $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue; switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": $theValue = ($theValue != "") ? intval($theValue) : "NULL"; break; case "double": $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL"; break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } if((isset($_GET['cod_prod'])) && ($_GET['cod_prod'] != "")){ $deleteSQL = sprintf("DELETE FROM produtos WHERE cod_prod=%s",GetSQLValueString($_GET['cod_prod'], "int")); mysql_select_db($database_conexao, $conexao); $Result1 = mysql_query($deleteSQL, $conexao) or die(mysql_error()); #Você passa como parâmetro da função unlink o caminho da imagem. Por exemplo: C:/wamp/www/site/imagem/nomedaimagem.jpg unlink(); $deleteGoTo = "excluir_prod2.php"; if (isset($_SERVER['QUERY_STRING'])) { $deleteGoTo .= (strpos($deleteGoTo, '?')) ? "&" : "?"; $deleteGoTo .= $_SERVER['QUERY_STRING']; } echo "<br>"; echo "<center><b>Operação realizada com sucesso!!!</b></center>"; } ?> Editado Outubro 28, 2012 por dedas Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 XIM Postado Outubro 28, 2012 Autor Denunciar Share Postado Outubro 28, 2012 Vo te passar o código pra você não atrasar seu projeto/estudo, mas não se esqueça de fazer o que o nosso amigo Eserra sugeriu.<?php include "topo.php";?> <?php require_once('../Connections/conexao.php'); ?> <?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = ""){ $theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue; switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": $theValue = ($theValue != "") ? intval($theValue) : "NULL"; break; case "double": $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL"; break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } if((isset($_GET['cod_prod'])) && ($_GET['cod_prod'] != "")){ $deleteSQL = sprintf("DELETE FROM produtos WHERE cod_prod=%s",GetSQLValueString($_GET['cod_prod'], "int")); mysql_select_db($database_conexao, $conexao); $Result1 = mysql_query($deleteSQL, $conexao) or die(mysql_error()); #Você passa como parâmetro da função unlink o caminho da imagem. Por exemplo: C:/wamp/www/site/imagem/nomedaimagem.jpg unlink(); $deleteGoTo = "excluir_prod2.php"; if (isset($_SERVER['QUERY_STRING'])) { $deleteGoTo .= (strpos($deleteGoTo, '?')) ? "&" : "?"; $deleteGoTo .= $_SERVER['QUERY_STRING']; } echo "<br>"; echo "<center><b>Operação realizada com sucesso!!!</b></center>"; } ?>obrigado amigo,vou testar aqui,pode deixar farei oque o outro amigo orientou,forte abraço Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
XIM
Olá amigos,Boa noite,estou precisando de uma jauda de vocês,tenho um codigo aqui php,ele exclui na moral no banco de dado os dados referente a foto,mas não exclui a foto da pasta foto,não manjo bem php,se pudrem me ajudar agradeceria.
eis o codigo:
<?php include "topo.php";?>
<?php require_once('../Connections/conexao.php'); ?>
<?php
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = (!get_magic_quotes_gpc()) ? addslashes($theValue) : $theValue;
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
if ((isset($_GET['cod_prod'])) && ($_GET['cod_prod'] != "")) {
$deleteSQL = sprintf("DELETE FROM produtos WHERE cod_prod=%s",
GetSQLValueString($_GET['cod_prod'], "int"));
mysql_select_db($database_conexao, $conexao);
$Result1 = mysql_query($deleteSQL, $conexao) or die(mysql_error());
$deleteGoTo = "excluir_prod2.php";
if (isset($_SERVER['QUERY_STRING'])) {
$deleteGoTo .= (strpos($deleteGoTo, '?')) ? "&" : "?";
$deleteGoTo .= $_SERVER['QUERY_STRING'];
}
echo "<br>";
echo "<center><b>Operação realizada com sucesso!!!</b></center>";
}
?>
Link para o comentário
Compartilhar em outros sites
5 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.