Questions tagged as 'get'

2
answers

More than one value in the same GET parameter

Is it possible to assign more than one value to the same GET parameter via http, as if I had passed an array in this parameter? For example: link Edit1: The application that will receive the request is developed in Laravel, if that influ...
asked by 28.06.2018 / 14:39
1
answer

How to capture (GET) multiple values sent in the same variable (PHP)?

After a query, I am sending different values through the same variable (via an input): <input type="hidden" id="sku" name="sku" value="<?= $reg->sku ?>"> That way, my URL looks like this: http://localhost/admin/anuncios...
asked by 21.09.2017 / 15:53
2
answers

Check if $ _GET exists within the view

Galera is as follows, I have a standard html file, which contains: <header data-color="<?php echo $client->client_color; ?>"> <h1> <?php if($client->client_image != ''): ?> <img src="<?php echo...
asked by 19.03.2015 / 20:41
1
answer

Paste $ request values

I would like to get all the values of a given key from a request. Ex Request:    nnmSoftware = 7-Zip & idSoftware = 1181 & nmLocal = Enterprise & network = 1 & nmSoftware = account-plugin-aim & idSoftware = 1 & nmocal = Enterprise &   refe...
asked by 03.02.2015 / 17:02
1
answer

How to manipulate and submit data through GET and POST? [closed]

I have a web application and need to access an external url that has login and password. Subsequently I must fill out a form, submit the data and receive the return on my application! Is it possible to use HTTP web requests from C # (GET, POS...
asked by 04.10.2018 / 14:54
1
answer

pass multiple variables through url GET

I want to pass two variables to another page through GET. I already have one that works like this: <a class='fa fa-remove' href='remover.php?remover=carrinho&id=$idproduto' style='font-size:24px'></a> But what I'm doing now...
asked by 24.06.2018 / 23:16
1
answer

$ _GET does not receive more than one variable

The following link exists. <a style='color: bfbfbf; text-decoration: none;' href='autorizar.php?id=<?php echo $curso[0]['idCurso'].'&resp=s' ?>'>Sim</a> If the yes was clicked the variable resp = 's', if it is not cl...
asked by 03.07.2017 / 18:25
1
answer

Php - Get variable by _GET or _POST? How to make name appear instead of cpf

Well, I'm doing a project where the student enters by cpf and by date of birth. However, in the user <div=class"user"> div in home.php (where the salutation and username must be) appears cpf instead of the name. What method do I u...
asked by 15.05.2017 / 05:00
1
answer

Problem with Getters and Setters of an Array

I'm having trouble accessing arrays in a singleton class Class Info public class Info { private static Info cinfo; private String[] first_name; private String[] last_name; private String[] nickname; public static Info getInstance() {...
asked by 19.07.2014 / 06:47
3
answers

How to use checkbox group to do search with php and mysql

I'm developing a real estate site with a search, where one of the filters is the neighborhood. Currently it's a dropbox, but I'd like to switch to a checkbox group so I can select more than 1 neighborhood at a time, how can I do that? I thoug...
asked by 23.07.2018 / 16:14