PHP vs jQuery - bir div içine bir resim yüklemek

0 Cevap php

Ben istemci tarafında bir div bir görüntü yüklemek bir php komut dosyası sunucu tarafında arıyorum.

first shot : ajax.php

if((isset($_POST['id'])) && ($_POST['id']=="loadphoto") && (ctype_digit($_POST['idp']))) {
    $query=mysql_query("SELECT articleid, photoid FROM articles_photos WHERE id='".$_POST['idp']."'", $mydb);
    if(mysql_num_rows($query)!=0){
        while($row=mysql_fetch_array($query, MYSQL_NUM)) {
            $path="./articles/photos/".$row[0]."/".$row[1];
        }

        echo $path;
    }
}

myjs.js

function loadPhoto(mexid) {
$.ajax({
    type: 'POST',
    cache: false,
    url: './auth/ajax.php',
    data: 'idp='+escape(mexid)+'&id=loadphoto',
    success: function(msg) {
        $('.articleviewphoto1').find("img").each(function(){
            $(this).removeClass().addClass('photoarts');
        });

        $('#'+mexid).removeClass().addClass('photoartsb');
        $('#visualizator').html('<img src="'+msg+'" class="photoartb" />');
    }
});
return false;

}

yardım için tnx

0 Cevap