Posts by Doctorspeppers • 23 points
3 posts
-
0
votes2
answers234
viewsA: How to skip line when reading a txt in PHP?
Code below explains: $arquivo_tmp = $_FILES['arquivoTxt']['tmp_name']; $dados = file($arquivo_tmp); $cabeçalho = dados[0]; // <- guardando cabeçalho $dados = unset($dados[0]); // <- tirando…
-
1
votes2
answers1017
viewsA: Image upload React Axios and PHP
Let’s go in pieces: First we created a function to pass to Base64 the image and mandala in the API: //Author James Harrington 2014 modified by Doctorspeppers function base64(file){ var coolFile =…
-
0
votes1
answer40
viewsQ: How to check if the duplicate in query SQL and use another column to choose which will for final query
I have a price list and an item table, at more than a price for each item and need to pick only the one with lower value. SELECT `nameItem`,`descItem`,`valuePrice`,`datePrice` FROM item, price WHERE…
mysqlasked Doctorspeppers 23