Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Xcode:Cách dễ nhất để gửi dữ liệu từ trường văn bản iOS cho ví dụ tới cơ sở dữ liệu từ xa

Bạn chỉ có thể thu thập dữ liệu từ một biểu mẫu gốc, sau đó sử dụng NSURLRequest / NSURLConnection để gửi dữ liệu đến trang máy chủ php của bạn.

//Example form with one php variable only. Use get URL argument notation to add more args.
NSString *rawStr = [NSString stringWithFormat:@"var=%@",textBox.text];
NSData *data = [rawStr dataUsingEncoding:NSUTF8StringEncoding];

NSURL *url = [NSURL URLWithString:@"http://myurl.com/script.php"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

[request setHTTPMethod:@"POST"];
[request setHTTPBody:data];

NSURLResponse *response;
NSError *err;
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];
NSLog(@"responseData: %@", responseData);



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Nhập tương đương có lập trình trong phpMyAdmin

  2. Cách nhập cơ sở dữ liệu bằng phpMyAdmin

  3. Có bao nhiêu hàng sẽ bị khóa bằng cách CHỌN ... ĐẶT HÀNG THEO xxx GIỚI HẠN 1 ĐỂ CẬP NHẬT?

  4. mysql echo không truy xuất từ ​​sau một khoảng trắng trong hộp văn bản

  5. chèn vào cơ sở dữ liệu từ trường văn bản trùng lặp nếu không trống php sql