Questions tagged [get-method]

An HTTP Protocol request method.

29 questions
1
vote
3 answers

how to Change a GET method URL to clean URL in php?

This is an URL that created by GET method in php to send DATA parameter to archives.html page: http://127.0.0.1/archives.html?option=com_archive&date=16-2-2014 Is there any way to clean this URL? I want to do something like this (and I can send…
user3307827
  • 556
  • 1
  • 7
  • 20
0
votes
1 answer

Remove get method from url

I want to remove get method from url using htaccess Bad Url: mysite.com/index.php?sub=usr1 Good Url: mysite.com/urs1 How can I do that?
PHP
  • 49
  • 3
0
votes
2 answers

ASP dot net core

I'd like to know how to specify routes in dot net core. For example, I have a get method, which gets 1 argument(id), and returns user. This method is available through this link (api/user/1). So, the question is how to make a method to this link…
0
votes
0 answers

Web API GET method with two complex parameters

I have a Web API program that has 8 get methods. Each method can get 2 parameters - filters and sorts. filters - a json object that contains all the params you can filter by sorts - an array that contains all the properties you want to sort by For…
0
votes
1 answer

Custom URL(permalink) in get method for wordpress

I had add this form in homepage of my theme
user5144939
0
votes
1 answer

GET method with API's

I am not familiar with API's so I was hoping someone could help me with a question I have. My company uses Greenhouse as their hiring software for people to apply and we are redoing our career site to be more custom. They want a page where we can…
bj scott
  • 23
  • 3
0
votes
1 answer

PHP advice with defining a GET Method

I have a navigation like this:
Wizard
  • 31
  • 6
0
votes
6 answers

How can I get $_GET values to a variable

In my page, there are multiple $_GET values. ie if(isset($_GET["projects"])) { ..... } else if(isset($_GET["research"])) { ...... } else if(isset($_GET["publication"])) { ..... } ...upto 10 elseif's Can I shorten this? Can I get these values…
Nisfan
  • 149
  • 3
  • 15
0
votes
4 answers

Having problem with Try-Catch block in a Java I/O program

I have created the output for a program that allows a user to input their employee name and number and then their hourly wage and their total number of regular hours and overtime hours. This is my first time working with this type of program in java…
Ryujin89
  • 213
  • 2
  • 6
  • 16
0
votes
1 answer

comet callback-polling and jetty-cometd implementation

I am using the cometd implementation that comes with the jetty server. I'd like to use the callback-polling transport, but when I try to connect to the comet server from javascript (note that the html page is in another web-server), jetty complains…
cheng81
  • 2,434
  • 2
  • 21
  • 18
-1
votes
1 answer

wordpress and the $_GET method

I have recently updated a plain html website for a music festival into wordpress. All is fine and beautifulllllll(!), except for one thing. People who apply for the courses are supposed to pay for a deposit, and when they do so they should receive a…
-2
votes
2 answers

Getting NoSuchMethodException from getMethod using Java reflection

I'm testing with Java reflection and trying to apply overloaded method to parameters according to their type.. However, I have NoSuchMethodException even though the method I tried to get is public. This exception still appears when I used…
Cheryl
  • 39
  • 8
-4
votes
1 answer

Java servets request.getMethod() not working

Hello I am trying to create a simple servlet as follows import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class Form extends HttpServlet { public void doGet(HttpServletRequest req,HttpServletResponse res) throws…
1
2