Jump to content
Fórum Script Brasil
  • 0

exclusão de imagem de pasta e dados do banco


XIM

Question

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

  • 0

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 by dedas
Link to comment
Share on other sites

  • 0
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

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...