All Questions

1
answer

How to automate the login in a web

I have a problem that I have not yet found the solution, I recently registered on a website and I set out to create an automatic login with excel macros. Everything seems to work, but I can not fill in the requested fields and therefore does not...
asked on 23.12.2018 / 14:06
3
answers

How to change background color only to certain elements of a grid?

Greetings! I need a little help with a CSS theme, the thing is that I'm developing a Wordpress project and I use a plugin to display the posts on a grid. The theme is that I have placed 3 columns, each photo has a button "Read more", however, in...
asked on 06.11.2018 / 02:17
1
answer

how to consume delphi dll in c #

I have a delphi function that I export as dll, here I leave my code: library MdEncDec; uses System.SysUtils, System.Classes, Bcrypt; {$R *.res} function EncryptWord( value: PChar ): ShortString; stdcall; export; var BCRYPT1: TBCRYPT...
asked on 07.11.2018 / 18:24
3
answers

Separate date date format (Y-m-d)

Hello I have this date date format ("Y-m-d") I want to separate them in parts and print only my month of that date. How do I separate it? date_default_timezone_set('America/Mexico_City'); $fecha=date("Y-m-d ");     
asked on 15.11.2018 / 19:42
1
answer

Control messages in laravel 5.5 forms

I have a form which gives me a query of a certain number of records, I would like it when these records appear to show a message on the top that says how many records I consult, but I have no idea how to handle these messages in laravel Does any...
asked on 20.11.2018 / 00:26
1
answer

Driver laravel moficar to search with more than one product

I have the following driver: public function show($id) { // Busco el perfil $perfil = lista::where('di', $id)->first(); //con el resultado de la busqueda muestro el perfil $mostrarperfil = Perfiles...
asked on 17.11.2018 / 15:19
1
answer

Obtain error data in a query in mysql with the condition that it only shows the errors that cover 80% of the total errors

I have the following doubt, although I already did it by taking the data and processing it with php I wanted to know if I can already bring the information from the base as follows: Based on this query I get a list of errors with their respec...
asked on 14.11.2018 / 17:58
1
answer

Doubt ascending / descending order

I have a form with which I collect the data in an array. $dato1 = $_REQUEST['nombre']; $dato2 = $_REQUEST['director']; $dato3 = $_REQUEST['año']; $dato4 = $_REQUEST['genero']; $dato5 = $_REQUEST['duracion']; $alumno = array("nombre" => "$d...
asked on 15.11.2018 / 11:14
1
answer

How to perform a query on mysql using count?

I can not perform the query that returns me the number of municipalities of the reports, example: |municipio | cantidad | |----------|----------| |ACAJETE | 4 | |PANTEPEC | 5 | |PUEBLA | 1 | In the report table: t...
asked on 06.11.2018 / 23:56
1
answer

Does not show the value of an XMl node

I am reading an xml where I need the code of the received message, for this I did in one part of the code this: string responseValue; while (reader.Read()) { if (reader.Name == "ns2:Response") { if ((reader.NodeTy...
asked on 14.11.2018 / 15:46