Questions tagged as 'html'

1
answer

Speech Recognition does not recognize special characters

I've tried using result.replace ("at", "@") of javascript to change the word "at" to "@" as it is in the code below but did not work. I want to do this with period, comma, underline and etc ... therefore, speech recognition writes in extenso...
asked by 05.01.2018 / 14:35
2
answers

Change CSS with javascript when clicking

I have a circle in css and half of it is hidden. When you click on it, I want the hidden part to appear. When I click back, I want him to hide again. I made the following javascript code, the problem is: I click, it appears; clico, hides; I clic...
asked by 03.03.2015 / 18:38
3
answers

Explaining the name in php

Could someone explain the difference and where can I change it.: $nome=$_POST['nome']; This $nome I know that it is default in case to use <input type="text" name="nome"> More in this case, is it mandatory to have this...
asked by 18.09.2018 / 22:13
1
answer

In HTML how to increase the space between the TDs without using cellpilling cellspacing?

My idea is to make a table that has a spacing between cells, as in the image: ButaccordingtotheMozilladocumentationforexample,youcanconfirmthatcellspacing="" cellpadding="" attributes are obsolete link And even if you talk:...
asked by 19.09.2018 / 17:46
2
answers

Align image next to text, respecting vertical spacing

I'm trying to make the images aligned to the right, respecting the spacing between the <p> tags, however it's getting like this: Ineedsomethinglikethis: MyHTMLcodelookslikethis: <p><img style="float:right" src="https://ww...
asked by 20.09.2018 / 23:25
1
answer

How to treat ids with php?

while ($row = mysqli_fetch_array($result)) { echo "<li class='list-inline-item'><a href='news.php?id=" .$row['id']. "'>". $row['titulo'] ."</a></li>"; echo "<br>"; } I...
asked by 21.07.2017 / 01:57
3
answers

Clicking the link will also work

I always have this doubt, just look: I have a menu, with ul and li: <ul> <li><a href="/inicio">Inicio</a></li> <li><a href="/sobre">Sobre</a></li> <li><a href="/con...
asked by 14.07.2017 / 15:05
1
answer

How to have the isset function using $ queryString in php

I have a code in php that has the function to get the parameter ?capa= with parse_str <?php $url = parse_url($_SERVER["HTTP_REFERER"]); parse_str($url["query"],$queryString);?> This is his code: <?php echo $q...
asked by 23.04.2018 / 08:52
1
answer

Integrating HTML + Node.js with Angular.js in "Real Time"

I have some issues with automatically updating a code in Angular.js inside my site. The integration is Node.js with HTML, integrating with Angular.js. However I have to always give F5 on the page so it updates the variable "Temperature". I would...
asked by 03.10.2016 / 21:04
1
answer

Line wrap with br tag causes spacing in generated PDF

When converting html to pdf using flying saucer in java, the following error occurs in the pdf file; A spacing between the last sentences before the paragraph line breaks. This gives the impression that the pdf to be generated is using the fully...
asked by 29.09.2016 / 05:54