I'm developing a website in FLASH. I've got a list of emails of several Distributors.
I need help in writing a PHP script which would extract a variable (ID) in the querystring (URL) and match it to an ID on the PHP page, then pass the relevant email address into Flash.
extract a variable in the querystring and match
Moderator: General Moderators
Re: extract a variable in the querystring and match
Would be great to see and example of what you want...
I think you need to look at PHP's function preg_match. If its ?id=x, then in php just use $_GET['x'], otherwise preg_match it out...
I think you need to look at PHP's function preg_match. If its ?id=x, then in php just use $_GET['x'], otherwise preg_match it out...
Re: extract a variable in the querystring and match
Please could anyone help me with a script.