NSstring *strURL =[NSString stringwithformat:@"http://localhost/example/login.php?email=%@&password=%@",email.text,password.text];
how do I convert this to Swift?
NSstring *strURL =[NSString stringwithformat:@"http://localhost/example/login.php?email=%@&password=%@",email.text,password.text];
how do I convert this to Swift?
var strURL = "http://localhost/example/login.php?email=\(email.text)&password=\(password.text)"