Interesting questions
-
2
votes1
answer268
viewsHow to hide images from 'Resources' folder?
How do I create a file to put the images in the 'Resources' folder? I don’t want the people who use my program to have access to them. The file can be any extension.
-
0
votes1
answer50
viewsKey keys in session
I would like to save and recover an array session in Laravel type in PHP Example: in the PHP: $_SESSION['dado']['dado1'] = $valor; Recovering echo $_SESSION['dado']['dado1']; In the Laravel I’m…
-
0
votes1
answer134
viewsPHP: Retrieve ID from a Simplified URL
I have a URL like this: http://localhost/oficina2/home.php? id=12345 I’m simplifying for: http://localhost/oficina2/? 12345 How do I recover this id (12345) on any page? I tried it like this: $url =…
-
1
votes1
answer84
viewsDoctrine prepare->execute
Hi, I’m doing this consultation with Doctrine $retorno = $em->getConnection()->prepare(" SELECT t.id_programa_fidelidade_diario, t.loja, t.nota, t.data, t.ecf, t.operador, o.nome,…
-
3
votes2
answers548
viewsFacebook Page Plugin giving "Failed to load Resource"
I would like to use the plugin "page" Facebook, but I’m not getting it. After adding this code at the beginning of the tag body <div id="fb-root"></div> <script>(function(d, s, id)…
-
1
votes0
answers44
viewsWrite to a . txt remotely with JS
Is there any way I can write in a text document (with write permissions for anonymous users) that is inside a server, using Javascript?
javascriptasked 11 years, 10 months ago admin_forumeiros_anonimo 11 -
7
votes1
answer764
viewsStructure/Organization Project C#
I have a project that I am developing in layers, so far I have the following: Access to data, presentation, business and transfer objects. The doubt is as follows: Example: I have one form to…
-
1
votes1
answer357
viewsHow to use the "php_admin_value" flag in virtualhost via PHP-FPM on a specific Virtual Host?
I decided to replace Apache2handler with PHP-FPM on my server. After this change, I tried running sudo apache2ctl configtest and I got the following mistake: AH00526: Syntax error on line 53 of…
-
5
votes1
answer1434
viewshtaccess for web.config
I switched my website to the platform Windows Azure and their server is IIS and my old one was Apache so the routes configured in htaccess are not working, need to know how to convert this:…
-
0
votes1
answer214
viewsgetElementsByClassName works to change css?
I’m trying to make a change in css by clicking on the word but when I use Getelementsbyclassname nothing happens, but with the ID I can do this, however as several elements will have exactly the…
-
0
votes1
answer49
viewsReply of the full query of line breaks
Hi, I have a problem with the query answer I made to db is full of \n and \ . Does anyone know what the problem might be? Thank you. model function, query a db in search of products added to cart by…
-
4
votes1
answer29006
viewsvariables in mysql: declare, set, how to pick an element from a table
Speaking of variables that can be declared within the begin, I saw that you have Declare e set only that I don’t know when to use them. I saw that you have set @x, set x, set x = x+1, set x := x+1;…
-
0
votes1
answer2275
viewsJSON parse error
I am developing a web application (Spring) and need to save a date in the database. I made a function Ajax to save the value, but I get the following error: JSON parse error: Can not deserialize…
-
2
votes0
answers58
viewsPreventing multiple threads for the same routine and the same user?
I’m developing a web app on ASP.NET Core MVC and some routines are called by clicking a button on the web page. It turns out you can push this button multiple times, so I need some…
-
0
votes1
answer130
viewsNative app performance is still far superior to html based app?
I am in doubt about which framework/language to use to start application development. From what I’ve read so far, I’m between using Ionic and Xamarin. Everywhere I read the great advantage of Ionic…
-
2
votes1
answer1378
viewsChange navbar style with scroll
I’ve been looking for a way to make a navbar bootstrap 3 has a behavior similar to Google+ navbar, when scrolling down it gets smaller and displays in place of menus with icon and title only menus…
-
0
votes0
answers661
viewsI can’t start Mysql on Easyphp
Whenever I use Easyphp I cannot start Mysql and Apache starts normally. What I can do?…
-
0
votes1
answer434
viewsReturning selected data to Razor in anonymous object
I have a controller where I look for the birthday kids of the month. But I have more than 1000 birthday girls per month, returning a table with more than 50 attributes of each one, thus making the…
-
3
votes2
answers39
viewsHigh error when extracting data
Migrate does not give any error and also get popular table normally with Seed. But when I try to extract data from my database, it does not work. namespace App\Http\Controllers; use App\Todo; use…
-
9
votes2
answers37795
viewsWhat does PSR mean?
Hello folks I recently found a term called PSR in the PHP area, but the topic was not very enlightening in defining the real meaning of the word PSR, I saw that it was related to the Object…