Questions tagged as 'html'

1
answer

Download generated image

I want to put on my site the option of downloading some data from a form as an image. In my current code I transform the content into image, but it is printed in HTML. Here is the simplified code in JsFiddle: link All I need now is for t...
asked by 29.10.2018 / 19:24
1
answer

Uncaught TypeError: Can not read property 'toLowerCase' of undefined

I try to get the values from a table and filter them, but for some reason the values are undefined and I have no idea how to solve them. <?php include_once("conexao.php"); if (isset($_GET["id"])) { $id = $_GET["id"]; $sql = "SEL...
asked by 09.11.2018 / 15:46
3
answers

Add class and link in a LI tag

I have a simple question. I have a slide rolling in the site and his arrows are: <li><a class="flex-next" href="#">next</a></li> <li><a class="flex-back" href="#">back</a></li> I need to add...
asked by 19.10.2018 / 00:56
1
answer

Pass the page html via GET Ajax

Hello, I'm trying to download an excel file by passing the html page, but when trying to send the html, it's passing as null. Ajax function exportarExcel() { var html = $("body").html(); $.ajax({ url: location.href = '@...
asked by 18.10.2018 / 17:02
1
answer

Responsive layout in an image

Good morning dear programmers, today I disturb them again with my beginner doubts. I wanted to know why I can not make this responsive image with decreased size (In case I put 80%), when I do this is leaving this space, and 100% is normal....
asked by 18.10.2018 / 12:38
1
answer

Add a fixed image sequence in PHP

I have this code: <table class"is-bordered is-striped is-narrow is-hoverable is-fullwidth"> <tr align="center" id="title"> <td>POSIÇÃO</td> <td>NOME</td> <td>MATOU</td> <td&g...
asked by 12.10.2018 / 17:11
1
answer

Show value in input of type datetime-local

I have this code: $tabela5 .= '<td> <input type="datetime-local" name= "DataInicio" id= "DataInicio" value="'. date("Y-m-d H:i:s") .'"></td>'; But the input does not show the current date and time.     
asked by 12.10.2018 / 14:04
1
answer

How to fix an HTML table without resizing

I have an event calendar where the user clicks on a date and opens a modal to do the registration. Butwhenascheduleisincluded,itlookslikethis: Notethaton03,despitehavinglimitedthecharacterswithsubstr()inPHPandplacedwidth:50px,itpushedtoanoth...
asked by 13.10.2018 / 16:52
1
answer

how to use php within an echo with html

Within a php file I generate a html content for an echo, my question is how do I use a for php within that echo. example of how I'm trying to do; echo '<div name="estrelas-cliente"> 'for($i =1; $i <= 2 ; i++){' <p&...
asked by 29.11.2018 / 04:47
1
answer

Define responsive table size

I'm creating a responsive table, but when I'm on a big screen, the table gets smaller than I should have, I tried to add a max-width to it in css , but it does not stay the same proposed. <table bordered striped centered hig...
asked by 29.11.2018 / 11:20