All Questions

1
answer

Friendly URL using HTACCESS

I have the following link: dominio.com/?p=filmes_v&m=tt081692 My .htaccess <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^film/?$ index.php?p=filmes [NC,L] RewriteRule ^film/([a-z0-9-]+)/?$ index.php?p=fi...
asked on 21.07.2015 / 21:33
2
answers

What has changed from MVC4 to MVC5?

I have read some topics on the subject, some say it has changed very little, others say that it was very important changes. I would like to know your opinion on the subject, I currently do projects with WebForms so I do not have any knowledge ab...
asked on 02.12.2015 / 14:13
2
answers

What are pointers?

I've come across this in several languages, especially C and C ++, but I've never understood what it is, how it's used, and why it exists. I discovered unintentionally that it also exists in C # and is an unsecured practice. What are pointer...
asked on 03.01.2018 / 21:47
2
answers

What is Multi-Tenancy?

What is Multi-Tenancy? What are the main approaches to implementing it?
asked on 25.01.2017 / 12:00
8
answers

PHP echo Problem with special characters ("รง") [duplicate]

I'm developing a website that displays the names of months with strftime . The html is already with 'charset = UTF-8'. The problem is that the display of the month name appears as in the image below Ididalittletestbelowwiththenameofth...
asked on 07.03.2014 / 13:59
4
answers

How can I make a code with a string work with or?

Apparently I'm having problems with strings : public partial class Form1 : Form { private int _adicionar; private int _retirar; public Form1() { InitializeComponent(); } private void _Random_Click(object send...
asked on 19.05.2016 / 15:38
1
answer

Difference between Handler and Thread

I made a test app where I would like to see a ProgressBar being updated by simulating a long-running task. I initially tried to use Handler because after some research I saw that its use was recommended: final int tempoDe...
asked on 07.04.2014 / 19:27
3
answers

Importing library in Android Studio

How to import a library into Android Studio? I have a project in Eclipse that uses the libraries: zip_file library downloader_library You need to add APK Expansion Files to an application that is larger than 50MB. The project...
asked on 16.12.2013 / 19:18
5
answers

How do I add class to the next element when I click the button?

I have a list with several items, and just above this list will have two buttons, "next" and "previous". I wanted the user to click next, for example, to add a different class to the next item in the list and remove the class from the previous i...
asked on 03.02.2014 / 19:02
3
answers

What is the default value for the "resize" attribute in a textarea?

How to make a textarea adjustable after resize: none has been set? For example, I have a textarea that has a value set to resize:none in CSS, however I want to leave the default value by putting an inline snippet. ....
asked on 17.01.2017 / 13:50