RickyD Posted July 25, 2015 Share Posted July 25, 2015 (edited) So I set up GUI to enter text. I added the jbutton. I'd like to know how and where (recommendations) to submit entered text. Edited July 25, 2015 by RickyD Quote Link to comment Share on other sites More sharing options...
Botre Posted July 25, 2015 Share Posted July 25, 2015 (edited) So I set up GUI to enter text. I added the jbutton. I'd like to know how and where (recommendations) to submit entered text. Sounds like something you should have thought about BEFORE having started the project :x Edited July 25, 2015 by Botre Quote Link to comment Share on other sites More sharing options...
Bobrocket Posted July 25, 2015 Share Posted July 25, 2015 You're going to need php for this. <?php if (isset($_POST['feedback'], $_POST['uniq'])) { //connect to database, insert row with feedback, uniq and other vars } else { die("invalid"); } ?> You'll also need to look into sending POST requests in Java. 1 Quote Link to comment Share on other sites More sharing options...