Posts by Gabriel Brandao • 16 points
3 posts
-
0
votes1
answer72
viewsA: PHP - Uploading multiple images does not work
Try it like this: <input type="file" name="files[]" multiple="multiple" /> foreach($_FILES["files"]["tmp_name"] as $key=>$tmp_name) { $temp = $_FILES["files"]["tmp_name"][$key]; $name =…
-
-5
votes3
answers881
viewsA: Is it possible, in CSS or Javascript, to leave a color of a transparent image?
Change the opacity of the image so it becomes more transparent you can use 0.01 until glhf <div> <img style="opacity: 0.1;"…
-
-4
votes1
answer92
viewsQ: If allows you to execute other unwanted lines
I want to make a program that allows you to manipulate and manage information about Cds that are stored in a text file. The file must save for each CD, the name of the author/group, CD name, year of…