Changes between Initial Version and Version 1 of Ticket #20053
- Timestamp:
- 02/16/2012 07:53:39 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #20053 – Description
initial v1 5 5 6 6 i use 7 8 {{{ 7 9 $var = word; ///not a double quotation; 8 10 $var = strtoupper($var); 9 11 $_GET['page_id']=$var; 12 }}} 13 10 14 but it doesn't work. if my site has a page "word" (with lowercase), than the function works. but i want 11 15 12 16 to get the uppercase value. i need this.. 13 17 18 {{{ 14 19 strtoupper(word); gives you = WORD, 15 20 but the whole function, which has 16 21 $_GET['page_id']=strtoupper(word); 17 can't find the page named mysite.com/WORD, but it searches again for the page mystie.com/word" (with 22 }}} 18 23 19 lowercase). 24 can't find the page named mysite.com/WORD, but it searches again for the page mystie.com/word" (with lowercase). 25 20 26 everything works well for posts, but i want for pages..