All Questions

1
answer

Modify my Bootstrap form with style

On all sides I see how to make a bootstrap form but not how to edit it in style. I have already prepared a secure login form. But the truth is, it's very "shabby" I'd like to make it cool This is my form <div class="container"> &l...
asked on 20.03.2018 / 21:56
3
answers

Print the number of each week of a date in specific PHP

I am working with dates in php but I can not specify something like what I'm looking for, my problem is to be able to visualize the number of weeks in a specific month I hope I was clear and thank you for your help. EXAMPLE: WEEKS of date =...
asked on 16.03.2018 / 22:29
1
answer

how to take a data from a json object in ajax

I have this code to create a table and insert the data of the type json array: $.ajax({ url: '<?php echo base_url(); ?>index.php/Manager/metricsAdvocates', type: 'post', data: {'sup':sup, 'dateM':dateM}, dataType: 'json...
asked on 22.03.2018 / 17:26
1
answer

ASP.NET Calculator

I'm doing a small exercise of operations consuming a Web Service, but I can not find a way to show the result in the view, I'm not using Model. controller { return View(); } [HttpPost] public ActionResult Index(int primero, int segundo...
asked on 11.01.2018 / 14:15
2
answers

perform query with a condition in mysql

I have a person table and a session and in the session table I have the category column, so I want make a query that ignores people who are admin I have tried these codes and I have not obtained the result I want. create procedure li...
asked on 12.03.2018 / 01:53
1
answer

Problem when listing files in a directory, the first result shows blank

I do not know the reason why when listing the files in the directory, the first result is always printed in white, as shown in the attached image. The code I am using is: <?php // Lista los temas alfabeticamente $ruta = "archivos/s...
asked on 25.01.2018 / 08:31
1
answer

Convert from RTF to Plain Text in SQL Server

I have a column in sql, where from an application I save data in rtf format, I would like to pass it to xml to use in a webservices. Is there any way to achieve this? Here's the example rtf: {\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttb...
asked on 29.01.2018 / 20:02
1
answer

Sum of two integers by inline asm in C

This is my code, I'm running it with gcc on linux, I try to save the result of 3 + 5 in the variable c, and display it on the screen: #include<stdio.h> int main(){ double c; __asm__ ("movw $0x05,%ax"); __asm__("movw $0x0...
asked on 10.01.2018 / 17:58
2
answers

OBTAIN NUMBER FIELDS MYSQL TABLE

Messrs. GOOD NIGHTS! I want to get all the different null fields of a mysql table, example: select * from client where * client!="NULL" Can you give me an orientation please?     
asked on 31.01.2018 / 00:44
2
answers

Question about if inside a class in javascript

I wanted to do that if you have a child it is true to show me something, to do it but not inside a class and if it is false tell me that you do not have children, I made this churro but it does not go, this._hijos is true you should enter the if...
asked on 14.01.2018 / 12:12