Questions tagged as 'html'

1
answer

Footer does not appear on the first page - Laravel DomPDF

I have the following code in my application to generate a PDF report: $head = '<html><head>' . '<title>Relatório</title><style type="text/css">' . '@page {margin: 120px 50px 80px 50px;}.head{font-size:...
asked by 05.05.2016 / 16:52
4
answers

HTML - Space between tds

Is there any way to give spacing between <td> as in the figure below? OBS: With right-only spacing of <td> .     
asked by 07.12.2015 / 19:08
2
answers

Get only one repeated value in mysql

Well, I have a table and in it a field called cargo and its value can be repeated, for example, the position teacher. In my HTML I'm setting a <select> when I retrieve the value of this field, but due to the value of i...
asked by 12.01.2016 / 14:48
2
answers

Problem with Utf 8 in txt file reading

I'm using the following directive to read txt files, however the texts are coming out broken. link     
asked by 02.05.2016 / 21:33
2
answers

Dynamic HTML via DB is bad practice in PHP?

I'm creating a platform where I need to change elements of the site through a control panel, and for example, would it be something very bad to insert into DB and pull via PHP? Let's say I have a menu with the following options in my menu :...
asked by 26.04.2018 / 10:05
4
answers

How to put image in input type reset?

You can put an image in the input with    type="image" But it stays as submit and I want to leave the    input type="reset" With image also but without being like submit and yes to reset the information entered by the user in the f...
asked by 26.01.2017 / 20:32
3
answers

While PHP does not exceed count

How do I pro-identify that will exceed the count set on the form and pause before? FORM: <form method="get" action="exercico04.php"> Inicio: <input type="number" name="inicio" value="1" max="100" min="1"/><br/> Final: <...
asked by 11.05.2017 / 21:24
2
answers

Html within "echo" php

I would like to know how to do this: <td><a href="edita.php?id=<?php echo $objProg->getid();?>">Alterar</a></td> Within a echo in php?     
asked by 29.03.2016 / 18:54
1
answer

HTML does not load font style located in remote folders

The index.html file is in localhost , but the font and the .css file is on a remote server : This is the source link: link What have I tried? @font-face { font-family: 'ProximaNovaBold'; src: url('ht...
asked by 01.02.2016 / 19:56
3
answers

How to select the content of an input in ng-focus?

In an input I have a method that selects the contents of the field when clicking on it. <input ng-click="selecionaTudo($event)"> The function is this: $scope.selecionaTudo= function($event){ $event.target.select(); } It wo...
asked by 23.03.2016 / 13:08