Hi,
I need help. I want to put some variable after the CMS given urlcodes http://www.url.de/index.php?[phpwcmstags] like this http://www.url.de/index.php?guestbook&i ... le2=wasser. Is there one master class for builing the urls, where i can add my variable?
Can somebody help me please, I dont now how to fix it.
Thanks for help!
Hi,
ich brauch dringend Hilfe. Ich möchte einige Variable an die vom CMS gegebenen URL anhängen, weil ich diese für eine andere Anwendung benötige. Es sollten also zum Beispiel so sein http://www.url.de/index.php?guestbook&id=1,40,0,0,1,0 => http://www.url.de/index.php?guestbook&i ... le2=wasser
Diese Variablen müssen an allen URL hängen, weil sie ansonsten ja verloren gehen. Richtig? Gibt es irgendwo eine Master Klasse welchen alle URL zusammen baut, die ich dann editieren könnte?
Wäre schön wenn mir jemand weiter helfen könnte.
Danke im voraus!
Add Variable after /index.php?[phpwcmstags]&var1&var
Hi,
some time ago I played around with this on a rewritten URL:
http://dl0wh.de/a&p=66.phtml
where a is alias and p=... is transported ...
When finished with this thread I switch source visisable
Greetings
Juergen
some time ago I played around with this on a rewritten URL:
http://dl0wh.de/a&p=66.phtml
where a is alias and p=... is transported ...
When finished with this thread I switch source visisable
Greetings
Juergen
http://www.phpwcms.de/forum/viewtopic.php?t=6941
Gives the GENERAL idea...
Of course you should ALSO utilize OG's recommendation from here:
http://www.phpwcms.de/forum/viewtopic.php?p=63686#63686
Gives the GENERAL idea...
Of course you should ALSO utilize OG's recommendation from here:
http://www.phpwcms.de/forum/viewtopic.php?p=63686#63686
Always - if you use POST or GET do this:
Code:
$my_post_value = remove_unsecure_rptags($_POST['my_value']);
$my_get_value = remove_unsecure_rptags($_GET['my_value']);