All Questions

2
answers

I can not configure the sqlsrv drivers in php7 [duplicate]

In the file php.ini all extensions are found, less the ones I need to connect to the SQL Server database. extension=php_sqlsrv_7_ts_x64.dll extension=php_pdo_sqlsrv_7_ts_x64.dll The .dll is in the C:\php7\ext. No...
asked on 04.01.2017 / 19:26
2
answers

Make comparison using String.Contains () disregarding casing

I need to check if a term exists inside a string (in SQL it is something like like '%termo%' ). The point is that I need to do this without considering the casing of the two strings . How can I do this? Is there something nat...
asked on 24.01.2017 / 16:27
2
answers

Navbar scrollbar does not appear in another width

I used the code below to change when the menu button for mobile was displayed and worked, but the scroll bar does not appear in this size. What can I do to display the scroll bar? If need be I will put images. @media (max-width: 991px) { ....
asked on 12.01.2017 / 13:21
1
answer

Access Object Property with a string

Student: public class Aluno{ public int Id { get; set; } public string Nome { get; set; } public string Sobrenome { get; set; } } Now I need to access the student's First and Last Name through a string, how can I do this?...
asked on 20.01.2017 / 17:39
1
answer

AngularJS on "Big" project

I read through the literature that AngularJS is made for single page . And if I use the same for a larger application, with several screens. What would be the negative impacts of using AngularJS? And if I wanted these impacts not to be gener...
asked on 16.12.2016 / 15:54
2
answers

Sort dictionary by Python value

I have a dictionary with the following format dic={759147': 54, '186398060': 8, '199846203': 42, '191725321': 10, '158947719': 4} I'd like to know if there's any way to sort it by value and print it on the screen. So the output is. '15894...
asked on 18.12.2016 / 05:18
1
answer

Double Encryption

A colleague told me that he created a crypto class that implements 4 algorithms: TripleDESCryptoServiceProvider Class DESCryptoServiceProvider Class RC2CryptoServiceProvider Class RijndaelManaged Class He told me that he d...
asked on 04.01.2017 / 17:56
1
answer

Check if file was created

I made a function that creates a file in php, but I need it to return true if everything worked fine or false if one of the steps failed. I have decided as follows: function createFile($path, $nome, $content){ if (!($fp = fop...
asked on 27.12.2016 / 16:28
3
answers

How to download file without backend [duplicate]

I want to force a file to be downloaded and I'm trying both ways. downloading on the same page: var docLocation = window.location.href + 'docs/apresentacao.pdf'; var iframe = $('<iframe src="' + docLocation + '" class="hidden">...
asked on 24.01.2017 / 17:32
2
answers

How to remove rows from a table A that has no relationship with table B?

I have 2 tables and want to remove rows from table A that have no relationship with table B? For example: In table B I have a field FK_ID and I want to remove from table A all rows that have no relationship with table B, ie, it does not have...
asked on 25.01.2017 / 18:46