Posts by Alex Sousa • 55 points
7 posts
-
2
votes1
answer303
viewsQ: When Typing in Input load another page without needing the Submit boot
I have a page where it has an input that loads barcode data when opening an application on mobile. When scanning the product barcode and loading the code into the input, I would like to have the…
-
0
votes1
answer91
viewsQ: ignore existing lines in the database when importing php file
I have the following line of code that performs the txt file import. <?php function Inserir($itens, Pdo $pdo){ $sts = $pdo->prepare("INSERT INTO dados(loja, cod_prod, cod_acesso, desc_prod,…
-
0
votes1
answer34
viewsQ: Show Mysql Database image with different 2ids but common PHP field
I have a registration page.php On this page I have INPUTS to insert Name, CPF, Phone Contact, plus an INPUT File type for the person to put photo of documents and photo of proof of residence. When…
-
0
votes1
answer299
viewsQ: Modal receiving data from the database
my products page displays from the database all registered products as div below. <?php $id_up = $GET["id"]; require("funcoes/conexao.php"); $quantidade = 10; $p = (isset($_GET['p'])) ?…
-
1
votes1
answer45
viewsQ: get search page is not being displayed because of REQUEST_URI
Well I’ll try to get past what happens! I have a php site where you have the config.php file with the following lines <?php $current_page_uri = $_SERVER['REQUEST_URI']; $part_url = explode("/",…
-
0
votes1
answer1165
viewsQ: SMS API integrated with PHP
I have a form of scheduling visits, when the user makes his scheduling and confirms is triggered an email to the same one with scheduling information. I wonder if anyone has ever integrated an SMS…
-
1
votes1
answer106
viewsQ: How to do "When selecting an option in dropdwn, it loads other database data into a Textarea" in php, mysql and Jquery
I have a form that has a select field name="nome_cliente" retrieving all registered clients from the mysql database. in this same form I have several inputs that will be registered to that selected…