フォームが送信されるときに、 javascriptのencodeURIComponent()関数を使用してURLをエンコードしています。
<form name="form" action="actions.php" method="post">
<input type="text" name="url" id="url" value="http://">
<script type="text/javascript">
function encodeLinks(){
var e = document.getElementById('url')
e.value = encodeURIComponent(e.value);
}
</script>
<button type="submit" class="btn btn-primary" onclick="encodeLinks()">Submit</button>
</form>
データをデコードしてmysqlクエリで使用するために、アクションページでそのデータをjavascriptに戻す最も効率的な方法は何ですか?