Questions tagged as 'html'

2
answers

How to overwrite an image without absolute? HTML + CSS [closed]

My goal is to insert a background image that can be written above with <h2>, <p> and etc on top of it, but without using the position: absolute as this interferes with the sub-menus of the page appearing texts and above of the...
asked by 24.09.2018 / 06:10
1
answer

How to update a div every x seconds?

Following a part of the html code, I need to update this div (# line1) every x seconds without using php. It can be with jquery, ajax, js or all together. I do not want to simply change a div ("altered div"), it is dynamic, it takes data from a...
asked by 13.09.2018 / 16:39
1
answer

PHP Error - "}" Appears on page

I created a list in PHP, but for some reason the "}" appears every time a new data is added to the list, what can I do to remove that bracket? Home Note: When I try to remove the "}" from line 35 PHP returns me with this error    Parse error:...
asked by 22.09.2018 / 16:07
2
answers

php file that creates html, how do I get the information contained in the database? [closed]

How do I create a html created by this php instead of containing the text between the quotes, it contains information that comes from my database. <?php # Nome do arquivo html $pagename = "pastatest/paginahtml.html"; # Texto a ser salvo no...
asked by 16.09.2016 / 22:18
1
answer

How to change the "code" content of a section with javascript [closed]

Hi, I need to change the content (code) of a section with javascript with the .click or onClick function but the content can not override that of the other section! Thanks     
asked by 11.07.2016 / 15:10
2
answers

People my code is giving the error: Notice: Undefined variable: connect in C: \ xampp \ htdocs \ network \ profile.php on line 25

My code is the one here <?php include("header.php"); $id = $_GET["id"]; $saberr = mysqli_query($conecta, "SELECT * FROM users WHERE id='$id'"); $saber = mysqli_fetch_assoc($saberr); $email = $saber["email"]; if ($e...
asked by 06.11.2018 / 01:15
1
answer

How to set up a table with Current Week Number plus the next 15 Weeks

How can I set up a table (HTML + PHP) using the current week number and the next 15 weeks, for example: Semana Atual é 29 então teremos 29+15 = 44 The table will display information from the database for week 29 through week 44 follows a...
asked by 15.07.2015 / 14:29
1
answer

Open page in the same window

I have a button where I would like it to point to another page when clicked and the alternative that I found was using the om click, but it happens that it opens in another window and I need it to open in the same window. How do I open in the...
asked by 19.08.2018 / 23:40
1
answer

How to make an image in a box responsive using CSS?

Good evening, I'm having a hard time making the following idea work: When I hover over a certain point, a box with an image appears, but I wanted this image inside the box to be responsive and fit the screen size. Then I tried the followin...
asked by 30.11.2016 / 02:11
0
answers

HTML and CSS form with Asp.Net MVC

I have this login form done in CSS and HTML, can I use it in ASP.NET for authentication? The only change I thought of doing was for form within: @using (Html.BeginForm("Login", "Conta", new { ReturnUrl = ViewBag.ReturnUrl }, FormMethod....
asked by 15.12.2018 / 16:50