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:...
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...
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 :...
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...
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: <...
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...
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...