简体   繁体   中英

Extract text from URL using javascript and display on php file

I have an error message on the URL when wrong password or captcha is added. Error looks like this on the url:

www.domain.com/signup.php?error_msg=The+characters+you+entered+did+not+match+the+word+verification

How to extract this from URL and display on the PHP file?

Just use the global $_GET array to retrieve the value:

echo $_GET['error_msg'];

More about this array can be found in the official documentation: http://php.net/manual/en/reserved.variables.get.php

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM