Questions tagged as 'html'

1
answer

Add 3 forms to 1 submit

I have 3 forms: form1 , form2 and form3 . p> I do not know how I can "merge" them so that I only need a <input type=submit /> for the three instead of creating a Submit for each Is there any way to do this?...
asked by 04.10.2016 / 22:06
2
answers

a calculator in php [closed]

I need a PHP code from a calculator, which adds 4 notes and divides by 4 and if the final media is greater than or equal to 6 that it shows approved, otherwise fail. SCRR <?php $nt1 = $_GET[$nt1]; $nt2 = $_GET[$nt2]; $...
asked by 05.10.2016 / 17:29
3
answers

Use HTML in PHP [duplicate]

I have the following code that is not working. echo "<a href='memberarea.html'><span class="glyphicon glyphicon-lock"></span> Member area</a>"; I think I'm not doing well to incorporate HTML into PHP.     
asked by 13.05.2017 / 10:34
2
answers

Grid Alignment Bootstrap

I have 3 images, they are aligned correctly, but from the resolution of the print below they start to appear one below the other, even though they have space to be displayed at most next to each other and the third below. I do not know if I unde...
asked by 16.05.2017 / 20:03
1
answer

Animation during ajax request

Personally I have an ajax request, only that it is taking a little bit, it only me of the return when successful or not, but during the request I do not show the user how is the procedure. As I do so, while the request is made, I show one animaç...
asked by 17.05.2017 / 20:58
1
answer

click () does not recognize button dynamically inserted inside tr

I dynamically insert items into a table using the following function: $("#inserir-item").click(function (){ ... $("table#tb-itens tbody" ).append(retorno); } The return variable contains something like: "<tr id="tr-22-2222" ali...
asked by 09.05.2017 / 22:22
2
answers

How do I delete white space from columns?

I have the following table: <table> <tr> <td style="border-top:1pt solid black">A</td> <td style="border-top:1pt solid black">B</td> </tr> </table> Note that when you...
asked by 11.04.2016 / 14:46
3
answers

Writing Div ID does Appear Div Hidden

I know the question is confusing, but the question is simple but I have no idea how I can do it, come on. I have a login system The person logs into this site It has the home page, in which I want to apply the script Ok, what script?...
asked by 24.03.2016 / 15:22
2
answers

Disable mouse scroll

My code. Css: td div{ width:100%; height: 40px; overflow: hidden; padding-top: 9px; } td div:hover{ overflow: auto; } Html: <td><div><?php echo $objProg->getagen(); ?></div></td>...
asked by 13.04.2016 / 19:14
2
answers

IF condition within input

Code: <input type="date" id="data" name="data" value="<?php echo $dataPost = $_GET['data']; ?>" required> The question is: Can you make a condition if before value within input ? For example: if($x == $...
asked by 01.04.2016 / 19:02