Posts by Leite • 1,147 points
56 posts
-
2
votes2
answers565
viewsA: Add multiple products to a single mysql order
Do you have a loop that encompasses the code that’s inside the if (isset($_POST['pagamento']))? The code of @Nuno Gonçalves is 'more or less' what you have to do. Place an order; Fetch the id the…
-
2
votes1
answer3215
views -
0
votes1
answer90
viewsA: Register button opens on its own
In the CSS of .modal1 adds a display: none; as you have in the .modal, this will make it hidden when starting the page.
-
0
votes2
answers62
viewsA: PHP syntax error when inserting an image
So apparently it’s correct, but to make a mistake, it’s probably related to " and the '. I’d try rewriting the line, without copying/pasting, you might even try using a different form of string…
-
1
votes2
answers157
viewsA: Paint input by clicking the checkbox
With CSS you can do that. When the tr have the class clicado, input will take the styles that are defined <style> .clicado{background: #000; color:#fff;} .desclicado{background: #fff; color:…
-
1
votes2
answers402
viewsA: How to overlay two sets of div’s using CSS?
Hi. I made a jsfiddle using the code you have in the repository, you can see here https://jsfiddle.net/Compay/4r1aqd1q/2/ Basically, the div.card must have position: relative; and the div.front and…