Posts by Flávia • 81 points
11 posts
-
0
votes1
answer42
viewsQ: Server Express does not read file beyond index.html
I created a server with express: const express = require('express'); const path = require('path'); const app = express(); app.use('/static', express.static('public')); app.get('/', function (req,…
-
0
votes1
answer163
views -
0
votes0
answers40
viewsQ: Password field check with JS
I made a filter to check if the password field contained at least 6 characters, but now I need to return an error message if you do not have it. I tried using map, because the application already…
javascriptasked Flávia 81 -
-1
votes1
answer75
views -
-5
votes2
answers170
viewsQ: IF IF IF how to do? PHP IF with syntax error
In the code, there are several conditions, according to the choices of the user. The system is simple, just checks whether or not the user can receive unemployment insurance. I’m following the…
-
-1
votes3
answers785
viewsQ: PHP result on the same screen
I need the result of the form to be presented on the same screen, I made the following code: <?php //Recolhe os valores digitados no formulário $v = $_POST['valor']; $tm = $_POST['txmensal']; $p…
-
0
votes0
answers638
viewsQ: Write about image with PHP
I need that from a form, the user can write his data, to be printed in a predefined image (will be an email signature) Follow code used, but image does not appear! HTML <form method="get"…
-
3
votes1
answer57
viewsQ: Restrict CSS to IE
Is something missing in this parameter ? I need this style to apply to IE 11 only, when I include this code it works, but other browsers tbm take <!-- [if gte IE 8]--> <style> .box-form…
-
2
votes1
answer110
viewsQ: HTML/CSS responsiveness
I am adjusting a code, and I can not in any way, make the arrows of Prev and next on the carousel, appear on mobile! I’ve adjusted for the media queries, but nothing solves! The code is too long to…
-
-1
votes2
answers319
viewsQ: Python URI error - 2588 - Palindromes
By going up my code to URI Online Judge (problem 2588), makes a mistake, and I’m not getting it right at all. The statement is this: And my code sent was this: entrada = input() letras_unicas =…
-
3
votes1
answer1065
viewsQ: Writing in Image with Javascript
I looked it up, but I can’t find any content! As in PHP there is a Imagestring, to write over the images, there is some library in JS that has the same function ? Setting: I have an image that will…