PHP Send data Help me!

Hi, Nice day!.

void setup() {

  String url = "http://"+"221.159.47.32/1010.php?a=11&b=2&c=3&d=40";
  link("http://"+"processingjs.org");
}

Data input very well. but I want not open internet page.

So, I want not open internet page during input data.

(exam, Input DATA : http://221.159.47.32/1010.php?a=11&b=2&c=3&d=40)

Help me. please example code. Help me.

Tagged:

Answers

  • Answer ✓

    By using link the data returned is directed to your default browser so you get to see a web page.

    You need to manage the process yourself by creating a http-request and capyure the returned data.

    There is a library called HTTP Requests for Processing (look in the 'data' section) which will help you do this.

    I suggest you install the library and try out the examples.

  • Dear quark,

    Good day!. I solved. What I want is not a link () function. Resolved through http library. Thank you.

Sign In or Register to comment.