Posts by Robson Araújo • 105 points
8 posts
-
0
votes0
answers343
viewsQ: Problem installing "@material-ui/core" package in my "create-React-app" application
I’m getting an error when I try to install the package @material-ui/core 3.9.0 in my application. When I execute yarn add @material-ui/core get the following return yarn add v1.12.3 [1/4] Resolving…
-
1
votes2
answers82
viewsQ: Symfony - Working with images?
I need to create an image with php , I would like to know if Simfony has a library or something already included in it to work with GD/Imagemagick functions. I’ve been researching and I’ve seen…
-
1
votes1
answer127
viewsQ: Zend Framework - Where are the queries?
I have an application using Zend Framework, in the structure MVC, I want to know where the queries to the bank are made, I’m a little lost because I never worked with Zend. In my model I urge, for…
-
1
votes2
answers365
viewsQ: Add attribute to dynamically created object
I’m trying to add a data-id for objects that will be created dynamically, well the point is that I want to do it right when the document or my object is loaded, without the need to click etc, see…
-
4
votes3
answers788
viewsQ: Hide description with ''Display: None " bad for SEO?
I have some links on the site and I will add a description to each of them, and hide the description, but I doubt if hide with display: none is bad for SEO. See how I intend to do <li><a…
-
2
votes1
answer1616
viewsQ: Get return of a PHP function in JS
I’m starting now and my question is simple, I have a function created within a class in a php file, and I want to get the return of that function in another javascript file, how do I do that? has…
-
0
votes2
answers2229
viewsQ: I can’t back up the mysql database using the dump
I have some questions. I need to make a copy of a database that is not on my machine, but on a server.. I am using the mysql dump command, but when I type the following command mysqldump -u user…
mysqlasked Robson Araújo 105 -
1
votes2
answers119
viewsQ: Access function object and use it anywhere
I made a request for a json file and passed it to a function. $.post('principal/json',minhaCallBack,'json'); //Requisição function minhaCallBack(returnhtml){ //função var json = returnhtml;…