Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、iPhone から PDO と Apache サーバーを使用して php mysql に投稿 var を送信して&いますが、var の内容に記号を入力すると、区切り記号として解釈されます。\& を試しましたが、うまくいきません。どんな手掛かり?ありがとう
&
@"myID=%@&asCreatorPresentation=%@&firstName=%@&lastName=%@&phoneNumber
urlencodePOST 変数の名前と値が必要です。
urlencode
たとえば、&記号は になり%26ます。
%26
あなたの文字列が必要urlencodeです。
[NSString stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]]