Posts by Azzi - Digicard • 103 points
5 posts
- 
		3 votes1 answer68 viewsA: Code doubtI modified your code in PHP, so you can see the answer more easily. But nothing prevents you from using it your way. But to simplify the explanation, I put it as follows. The tag <?php is the… phpanswered Azzi - Digicard 103
- 
		0 votes0 answers67 viewsQ: Is it possible to authenticate a user on multiple services?I have two distinct services from each other, but both share the same data for authentication, so I made a single-screen entry that gives you the service options that the end user wants to enter.… 
- 
		0 votes2 answers54 viewsA: how to update idTry this: $servidor = "local"; //DIGITE SEU SERVIDOR $usuario = "user"; //DIGITE SEU USUÁRIO $senha = "pass"; //DIGITE SUA SENHA $dbname = "nome_tabela"; //DIGITE SUA TABELA //Criar a conexao $conn… 
- 
		0 votes0 answers41 viewsQ: Is it possible to overwrite MIME Type from a PHP file?I am developing a tool that creates a custom video with the specifications that the user decided in previous steps. The client mounts what he wants inside a canvas, I remove the stream with the… 
- 
		3 votes1 answer92 viewsQ: Is it possible to see the image load progress in js?Is there any way to know the progress of image uploading? I tried to use onload and onprogress as suggested in a previous tip, but only onload works. var image = new Image(); image.onload = function…