Passing variables after url redirects to home page
- JayShoe
-
Topic Author
- Offline
- New Member
-
Less
More
- Thank you received: 0
16 years 10 months ago #2767
by JayShoe
Hello,
I am trying to send custom variables to a page that is not located on my Joomla CMS. It is a php page that is located in a subdirectory of my site. The Url structure winds up being:
www.mydomain.com/test2.php&custom+Event+Location%3D08086
When I send this to this page, it redirects me to my home page.
Do you have any idea how I can pass that custom variable onto that page without the system redirecting me home?
Jay
I am trying to send custom variables to a page that is not located on my Joomla CMS. It is a php page that is located in a subdirectory of my site. The Url structure winds up being:
www.mydomain.com/test2.php&custom+Event+Location%3D08086
When I send this to this page, it redirects me to my home page.
Do you have any idea how I can pass that custom variable onto that page without the system redirecting me home?
Jay
Please Log in or Create an account to join the conversation.
- Saka
-
- Offline
- Administrator
-
16 years 10 months ago #2770
by Saka
Emir Sakic
www.sakic.net
Because it should be:
www.mydomain.com/test2.php ?var1=something&var2=something_else
and not:
www.mydomain.com/test2.php &custom+Event+Location%3D08086
???
www.mydomain.com/test2.php ?var1=something&var2=something_else
and not:
www.mydomain.com/test2.php &custom+Event+Location%3D08086
???
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.