I currently have this piece of code:
NSString *strURL = [NSString stringWithFormat:@"http://www.sample.com /phpFile.php?firstname=%@",txtfirstName.text];
NSString *strURL2 = [NSString stringWithFormat:@"http://www.sample.com/phpFile.php?lastname=%@",txtlastName.text];
But the problem is that this creates two different rows and I want the firstname, last name, and everything else on one row.
So would it be possible to do something like:
NSString *strURL = [NSString stringWithFormat:@"http://www.sample.com /phpfile.php?firstname=%@",txtfirstName.text,txtlastName.text,txtheight.text,txtweight.text];
or do I need to do something more complicated?
Thanks in advance!
use it and like this