Posts by diegoos • 71 points
2 posts
-
1
votes3
answers789
viewsA: Exception in sql query
It’s not clear what you want, but come on. Do you want to select all COLUMNS except one? If this is the case, you should pass the columns you want to use: select col1,col3,col4,col6 FROM itens ORDER…
-
6
votes3
answers1436
viewsA: Information when Hovering Mouse in Photo
A simpler way is to use jQuery’s Animation. Example: jQuery(".foto").stop().hover(function(){ jQuery(".foto span").animate({height:"100px", opacity:"0.8"}); }, function(){ jQuery(".foto…