Posts by Mateus Aziani • 192 points
7 posts
-
0
votes3
answers1087
viewsA: How to put default value in time field in mysql?
Create your hourly field as datetime, and in the Insert query, use the current_timestamp function(). Then it would be Insert INTO table (issuing time) values(current_timestamp());…
-
2
votes1
answer84
viewsA: Error 404 in SASS
Dude, Voce doesn’t load the . scss file into your view, it’s what it generates, i.e., a css file. Make sure your file is generating a css file, and then import that file into the view
-
1
votes5
answers1390
viewsQ: Page redirection according to access country
I have 2 PHP pages, one in Portuguese and the other in English, and I would like the user to be automatically redirected to English if the access was outside Brazil. Is there any way ? Or the most…
-
0
votes1
answer66
viewsQ: Netbeans, customisable default code
There is a way for me to load a require for example in the.php classes in netbeans by default ?
-
3
votes2
answers73
viewsQ: PHP redirection
Is there an API and/or function, in PHP, that redirects the pages of my site, depending on the location of the person ? Example : if not BR, redirect to the English page.
-
-1
votes1
answer68
viewsQ: How to market a framework
I have a PHP Web Development Framework, for development in my company, and the intention would be to go to the public, but I would like to know, which is the best way to generate licenses, with the…
frameworkasked Mateus Aziani 192 -
0
votes3
answers2968
viewsA: How to install Android Studio on Linux distributions?
After installing Java, if you are dist Debian, install the repositories and Android Studio with the commands below in the terminal: sudo add-apt-repository ppa:paolorotolo/android-studio sudo…