Posts by Faillen • 75 points
11 posts
- 
		-1 votes1 answer166 viewsQ: how to increment a loop javascript object array?Good afternoon, I am training my javascript, but I have a question that I could not find a solution on the internet, I want to increment an object array in loop, I found only how to increment array,… javascriptasked Faillen 75
- 
		-1 votes1 answer208 viewsQ: Laravel in hosting only works at homeI followed a tutorial where the folder of the Laravel goes outside public_html and changes public_html/index.php to require __DIR__.'/../projeto/vendor/autoload.php'; $app = require_once… 
- 
		2 votes3 answers229 viewsQ: How do I access the value of this array in javascript?Good morning, I’m wanting to access the data of this array in javascript [{"nome":"Teste","descricao":"Apenas um Teste","ativo":"1","id":6},[{"nome":"Categoria"}]] and I’m not getting it, the way… javascriptasked Faillen 75
- 
		0 votes1 answer60 viewsQ: How to make mysql select pick up data with a list restriction?Good afternoon guys, in mysql select has the option IN(), which passes a string list, then it filters that list in select in Where, ex : SELECT * FROM tabela WHERE id IN (1,2,3,4) Is there a… 
- 
		2 votes1 answer201 viewsQ: Pass parameter through AJAXI am making a page where the user click the button will display some database information, only it is passing only a part, I do not have much experience with javascript, my code is <?php… 
- 
		0 votes1 answer94 viewsQ: I cannot access the value of the array I receive from an APIGood afternoon, I’m walking little by little in php, but this part of array I still get very confused, I researched a lot on the internet and I read in the php manual but I can’t do what I want, I’m… 
- 
		0 votes1 answer149 viewsQ: Is it possible to convert pdf to png without using Imagick?I am generating a pdf document and wanted to convert it to png, but client hosting does not accept php extensions like Imagick, I searched a lot on the net but only find options that uses Imagick,… 
- 
		0 votes1 answer38 viewsQ: When the person chooses something in select display an image on the form sideI am making a form in which the user will choose a background image, I wanted that when she chooses this image in select to display on the side or below a thumbnail of it, searched a lot on the… 
- 
		0 votes1 answer73 viewsQ: Select from today until a week agoI want to select a sql date from today until a week ago, I found this code here 'SELECT * FROM tb_user WHERE registro BETWEEN CURRENT_DATE()-7 AND CURRENT_DATE() ORDER BY registro ASC'; more it… 
- 
		0 votes1 answer49 viewsQ: Take data from database 1 and pass to database 2I have a database on a host and wanted to pass data to the database of another host, but the host does not accept external connection, how can I do this? Would anyone have any suggestions? using PHP… 
- 
		0 votes2 answers479 viewsQ: A div cover the entire screen in CSSI have a panel where there is a button that pulls a function that takes a while to run, so I wanted to put an img of load and background with alpha, but it’s only taking a part of the screen equal…