将字符串转换为可在php html表单中读取的URL

时间:2014-06-18 02:37:35

标签: urlencode

我正在尝试将字符串转换为链接href标记。这就是我现在所拥有的:

<?php 

$title = urlencode(the_title());


?>

<form>
<input type="button" value="Submit Resume" onClick="window.location.href='..../../submit-resume/?job=<?php $title ?>'">
</form>

我可以让'the_title()'发布到网址,但问题是标题可能包含“R&amp; M Technician”等字符,其中“&amp;”

表示,一旦解析完URL,它就会从字符串中删除。

输出应为R%26M%20Techncian。目前我只是获得R&amp; M%20技术员,没有%26。

非常感谢任何帮助。

谢谢

0 个答案:

没有答案