I tried to add a form, which should send some string to a php script on another page.
But that page doesn't want to show the sent string.
Any ideas?
This could help me save a lot of time, but it just won't work.
Forms do not work! - URGENT
-
atra
Re: Forms do not work! - URGENT
Well, Ted already sent me the answer.
That was exactly what I've needed.
I wanted to show link from one page (link page) to another, where it will show the selected link value.
Otherwise I'd have to make separate page for every link to show the content
Here it is
Basically, you're trying to send the rss
url over GET (index.php?page=somepage&rssfeedurl=http://blah.com/rss.xml),
right?
These are the times why I'm glad that CMSMS is written on top of
smarty. You get a lot of cool stuff for free doing that.
For instance, in order to pull the rss url from the url like that, you
can do something as simple as: {cms_module module='rss'
url=$smarty.get.rssfeedurl}
That was exactly what I've needed.
I wanted to show link from one page (link page) to another, where it will show the selected link value.
Otherwise I'd have to make separate page for every link to show the content
Here it is
Basically, you're trying to send the rss
url over GET (index.php?page=somepage&rssfeedurl=http://blah.com/rss.xml),
right?
These are the times why I'm glad that CMSMS is written on top of
smarty. You get a lot of cool stuff for free doing that.
For instance, in order to pull the rss url from the url like that, you
can do something as simple as: {cms_module module='rss'
url=$smarty.get.rssfeedurl}
