Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 2

Warning: include_once(http://www.confrage.com/bin/header.php): failed to open stream: no suitable wrapper could be found in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 2

Warning: include_once(): Failed opening 'http://www.confrage.com/bin/header.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 2
URLエンコード

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 27

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/menu.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 27
 
トップページ >  PHP >  URLエンコード
初版2008/11/21: 最終更新日2008/11/21
URLエンコード
目次
URLエンコード
サンプルコード
サンプル
URLエンコード
GETメソッドで送信されたデータを受け取るスクリプトに対して、HTMLだけでな<A>タグのリンクでデータを渡す場合、
パラメータに全角文字や半角英数字が含まれていたら、あらかじめurlencode関数でURLエンコードしておく必要があります。

以下がサンプルになります。

サンプルコード
(php部)
<?php
if (isset($_GET[inputdata])) {
	$html = $_GET[inputdata] . "<BR>";
}
else{
	$prm = "クリックしました。";
	$html = "<A href='" . $_SERVER[PHP_SELF] . "?inputdata=" . urlencode($prm) . 
	"'>" . "ここをクリックしてください!</A>";
}
?>
(html部)
<?$html?>

サンプル

Warning: Use of undefined constant inputdata - assumed 'inputdata' (this will throw an Error in a future version of PHP) in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 95

Warning: Use of undefined constant PHP_SELF - assumed 'PHP_SELF' (this will throw an Error in a future version of PHP) in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 100
ここをクリックしてください!

Warning: include_once(/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php): failed to open stream: No such file or directory in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 113

Warning: include_once(): Failed opening '/home/sites/heteml/users/m/o/r/moriya-h5/web/confrage/bin/side_bar.php' for inclusion (include_path='.:/usr/local/php/7.4/lib/php') in /home/users/2/moriya-h5/web/confrage/php/confirmation/urlencode/urlencode.php on line 113