Questions tagged as 'html'

1
answer

Problem with PHP

I have an HTML code to send a form that carries a photo. <form method="post" enctype="multipart/form-data"> <input type="file" name="imagen_subir" id="imagen_subir"> <button type="submit" class="form-control btn btn-dang...
asked by 22.06.2016 / 05:06
1
answer

HTML text is not displayed in Safari browser [duplicated]

On the website link , the mobile phone number in the SAFARI browser is not shown at the bottom of the page, only "cellular:" and the number goes blank. In Chrome you see the text well, can it be the typography? <p>Celular: +...
asked by 18.12.2018 / 05:24
3
answers

Separate date date format (Y-m-d)

Hello I have this date date format ("Y-m-d") I want to separate them in parts and print only my month of that date. How do I separate it? date_default_timezone_set('America/Mexico_City'); $fecha=date("Y-m-d ");     
asked by 15.11.2018 / 20:42
1
answer

Doubt ascending / descending order

I have a form with which I collect the data in an array. $dato1 = $_REQUEST['nombre']; $dato2 = $_REQUEST['director']; $dato3 = $_REQUEST['año']; $dato4 = $_REQUEST['genero']; $dato5 = $_REQUEST['duracion']; $alumno = array("nombre" => "$d...
asked by 15.11.2018 / 12:14
1
answer

I can not center horizontally a div child of a container div with flexbox

I can not horizontally cen a div with flexbox. I have a half query for mobile screens @media only screen and ( max-width: 479px ) { .filadisco1 { display: flex; width:280px; justify-content:center; flex-direction:column; align-content: center...
asked by 26.09.2016 / 16:38
1
answer

When I make display that scrollie so that the element can be seen (without jquery)

Basically I would need your help so that when I press the question button and the answer opens scrollie so I can see the answer on the screen. Since what happens when I open the third question I can not see the answer and I have to go down scrol...
asked by 24.09.2016 / 19:56
1
answer

Add items in two lists at the same time

I have the following code that allows you to pass an element, in this case inputs, from one div to another by a button or drag and drop. The idea is that when an element of div1 is passed to div2, it remains in div1 but also passes to div2...
asked by 10.08.2018 / 16:37
1
answer

Generate User Name from name and surname

I have the following code where I enter a user, but I want to validate if the username that I am assigning to the user already exists and if so add it add a number to username Example: JPerez, JPerez1, JPerez2 . // Separamos los...
asked by 27.07.2018 / 21:02
1
answer

Count the input [] in javascripts

I have the following code where I create input [] with a button but I want to calculate the total input added for that value multiply it in another function in javascripts <script src="https://ajax.googleapis.com/ajax/libs/jquery/3....
asked by 18.07.2018 / 21:29
1
answer

Mark the first radio button generated with a loop in pug

I'm using pug to generate a list of radio buttons using a while loop: - var n = 0; while n < 11 input(type="radio", name="cb", id="cb"+n, value=n) label(for="cb"+n) #{n++} The problem is that in this way none is marked by de...
asked by 17.07.2018 / 18:46