Questions tagged as 'html'

0
answers

validate a password with hash encryption for a php login

<?php session_start(); // Include db config require_once 'config.php'; // Init vars $userinput = $password = ''; $userinput_err = $password_err = ''; // Process form when post submit if(isset($_POST['login'])){ // Sanitiz...
asked by 17.10.2018 / 23:19
1
answer

Modify parameter to URL

I have a page where I access information through js and I'm moving between records through the link created in js, this does not change a URL. what they are asking me is that I can use the arrows from the front and the back of the browser and th...
asked by 17.10.2018 / 21:23
1
answer

Open link in pop up

The problem is that I have that code and it works well with paragraph image tags and a header, but with a link, it does not load, it only remains empty ... .img-contenedor { position: fixed; font-family: Arial, Helvetica,...
asked by 18.10.2018 / 00:33
2
answers

Break down .txt file information for database save

function filedata () {     $ file = fopen ('data_centros / datos_AVC05.log', 'r');     if (! $ file) {         echo "The file could not be opened";     } else {         while (($ line = fgets ($ file))! == false) {             yield $ line;     ...
asked by 22.10.2018 / 19:14
0
answers

I need to search the database depending on the selected checkboxes of the regions, their states as it could be solved

table = commerc fields id, name, brand, region, district, provincia, categoria I need that when consulting the regions, I bring the records and can select through a checkbox the districts and provinces of the selected regions....
asked by 24.10.2018 / 13:16
0
answers

I need to search the database depending on the selected checkboxes of the regions, their states as it could be solved

table = commerc fields id, name, brand, region, district, provincia, categoria I need that when consulting the regions, I bring the records and can select through a checkbox the districts and provinces of the selected regions....
asked by 24.10.2018 / 13:16
0
answers

Validate inputs type Email are equal AngularJs

I am trying to validate that a input type email is equal to the other but I have not been able to achieve it, is it possible to validate it from the view? var app = angular.module('myApp', []); app.controller('myCtrl', function($...
asked by 18.10.2018 / 13:58
1
answer

How to Activate a Li Element from the url

Hi, I have a list of 3 elements and I need to know how I can put an element of that class="active" list from a call with @UrlAction. Thanks in advance INDEX WHERE THE LISTING IS THE ELEMENT IS TRACKING @{if (!User.Identity.IsAuthenticated)...
asked by 19.10.2018 / 09:09
0
answers

Stop sequence in php

I have this sequence that collects data entered in BreezingForms of Joomla , and presents them in a consecutive table. The problem is that we would like to make this sequence drawn in 2 tables, one next to the other, so that it d...
asked by 18.10.2018 / 08:50
0
answers

Scraping TD Tags Using JSOUP

I'm trying to get data from a view-source page: link which are shown in a table html rows and columns <div class="table-responsive table-rounded" id="general_imei_info"> <table class="table table-featured">...
asked by 19.10.2018 / 05:10