XIM Posted October 25, 2012 Report Share Posted October 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>";}?> Quote Link to comment Share on other sites More sharing options...
0 dedas Posted October 26, 2012 Report Share Posted October 26, 2012 Rapaz, use a função unlink(). Se tiver problema com permissão na pasta, procure pela função chmod(). Quote Link to comment Share on other sites More sharing options...
0 XIM Posted October 27, 2012 Author Report Share Posted October 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? Quote Link to comment Share on other sites More sharing options...
0 ESerra Posted October 27, 2012 Report Share Posted October 27, 2012 Primeiro pesquise por CRUD, assim você aprenderá a utilizar bancos de dados, depois:php.net/unlink Quote Link to comment Share on other sites More sharing options...
0 dedas Posted October 28, 2012 Report Share Posted October 28, 2012 (edited) 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>"; } ?> Edited October 28, 2012 by dedas Quote Link to comment Share on other sites More sharing options...
0 XIM Posted October 28, 2012 Author Report Share Posted October 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 Quote Link to comment Share on other sites More sharing options...
Question
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 to comment
Share on other sites
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.