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.
HTMLドキュメントにフォームがあり、その内容をPOSTリクエストとしてサーバーに送信します。ただし、POSTリクエストをポート80以外のサーバー上のポートに送信したいのですが、これは可能ですか?
アクションに追加するだけです
<form method="post" action="http://myserver.com:1234/postHandler.php"....
はい、可能です:
<form action="http:/myserver:7778/process" method="post">