Questions tagged as 'html'

2
answers

When or how to integrate a php code into html

I'm trying to make a simple application with no Framwork to put into practice some concepts I've learned. I studied a lot on back-end with emphasis on OOP, but when I went to index.php the questions came up: What now? Is it anywa...
asked by 08.07.2018 / 14:54
2
answers

How to make link to file download in html?

I'm using the tag: <a href:"{{ arquivo.caminho }}" download>link</a> With the download attribute to download links from my local network files (tiff images), however, the downloaded file is a .tiff file containing the html of my...
asked by 30.01.2018 / 19:56
1
answer

Open link in another browser in HTML

Good morning everyone! Next, I have a very simple HTML code, where I have an image linked to a link of a local application in the company (the application is web) or when I click on the image the page automatically redirects me the applicatio...
asked by 01.02.2018 / 15:17
3
answers

How to put this JS alert to appear when entering the page

Well, I've found this custom alert on a site, and I'm looking forward to putting it on my page, to enter the page, the alert will appear. I could not follow the site statement, because in their example it's about to appear when I click on a...
asked by 10.12.2017 / 19:10
2
answers

Display ID in form before registering php and mysql

I'm doing a sign-up screen, but I wanted the system to already display the ID (id_entity) that will be registered. When saving, it will ask if I want to register documents, then if I click on yes, it goes to a new doc registration form that when...
asked by 24.12.2017 / 19:26
5
answers

How to display DIV if the radio is dialed?

I have the following code: <form> <input type="radio" id="div1" name="consulta[]" value="1">Opção 1 <input type="radio" id="div2" name="consulta[]" value="2">Opção 2 <input type="submit" value="Registrar"&g...
asked by 27.11.2017 / 11:42
3
answers

Display more than one information in the same table with PHP and MYSQL

I would like to display in the table the information of the registered student and also of the courses that he is enrolled in. Final result you'd like displayed: Nome Aluno | Telefone Aluno | Cursos ---------------------------------------...
asked by 06.01.2018 / 18:33
2
answers

How to call a method of views in html?

I created the following method in the views.py file: def home(request): name = 'Jacinto' args = {'myName' : name} return render(request, 'accounts/home.html', args) I want to now call this function that redirects me to the home.htm...
asked by 11.01.2018 / 16:29
2
answers

How to 'effect' radio in div

    
asked by 02.01.2018 / 18:44
2
answers

Add element after another with jQuery

How can I add another <li> ... </li> tag after the last one with Jquery ? I have installed a plugin "Jquery Custom", and would do it there. <div class="col-sm-5 col-md-5 social-media style-1"> <h3 class="widget-...
asked by 10.04.2018 / 23:11