Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by zahel · Oct 05, 2011 at 10:54 PM · wwwwwwformpostsendaddfield

Sending data to a .php service using Unity's WWW?

So, my target platform is android, and I'm using unity's WWW class to try and send data, a string and an integer, but the service is never receiving the data. I've tried two methods, and they are as follows:

 WWWForm form = new WWWForm();
 form.AddField("username", playerName);
 form.AddField("score", playerScore);
 WWW connection = new WWW("http://www.webdomian.com/directory/directory/webservice.php", form);

and I've tried:

 WWWForm form = new WWWForm();
 byte[] namedata = Encoding.ASCII.GetBytes(playerName);
 byte[] scoredata = Encoding.ASCII.GetBytes(playerScore.ToString());
 form.AddBinaryData("username", namedata);
 form.AddBinaryData("score", scoredata);
 WWW connection = new WWW("http://www.webdomian.com/directory/directory/webservice.php", form);

I've also tried those methods sending form.data instead of form, but to no avail.

The playerName, playerScore are both defined properly, and the dud web address is a real functioning address.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by DaveA · Oct 06, 2011 at 12:30 AM

Did you try sending via GET (just params in the url, like http://www.webdomian.com/directory/directory/webservice.php?username=doug≻ore=11 ) ?

Do you get what you expect if you make an html form and hit your script with it?

Are you sure your Android is able to access the page (wifi is on, 3G is on, etc.)?

Are you yielding after this code?

Because to answer your question, yes, you can do this. The first codes look ok at first glance.

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image zahel · Oct 06, 2011 at 01:30 AM 0
Share

Yes I tried via GET params, but as that isn't exactly secure, I'd prefer not. Not sure what you mean with the second question. Yes, the android can access the page, wifi is enabled, and im able to browse the internet. Yes, I'm yielding.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Posting raw XML data to web - no parameter name 2 Answers

GET Request Wrapper 1 Answer

PHP POST through $_REQUEST with WEBBUILD 1 Answer

Blank web server response in multiple type data submission 1 Answer

How do I send data over the internet? 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges