I just installed a new plguin in wordpress, and found out that the plugin uses a custom url like /?m=value. How do i add custom url?? Do I call it a custom url or ??

Thanks, Moon

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If you are trying to get some parameters through URLs, you can pass it like http://myurl.com/page/?param1=123&param2=123&param3=123.. and get then in the php with the $_GET.

$myvar1 = $_GET['param1']; $myvar2 = $_GET['param2']; $myvar3 = $_GET['param3'];

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.