Good day! Tell me how to implement a picture change when hovering, here is my current code, but it does not work:
<php $Image = '/image/'.$row['image']; $Image2 = '/image/'.$row['image2']; ?> <img src="<?echo $Image;?>" alt"image" onmouseover="this.scr='<?echo $Image2 ?>'" onmouseout="this.scr='<?echo $Image ?>'">
onmouseover="this.scr='<?echo $Image2 ?>'"=> this.src , not this.scr - Vasily Barbashev