¡@

Home 

php Programming Glossary: jrequest

How to Save Uploaded File's Name on Database

http://stackoverflow.com/questions/12927464/how-to-save-uploaded-files-name-on-database

extends JControllerForm function save file JRequest getVar 'jform' null 'files' 'array' path JPATH_BASE Make the.. adding following lines taken from @Andras Gera code data JRequest getVar 'jform' null 'post' 'array' data 'invoice' strtolower.. 'array' data 'invoice' strtolower file 'name' 'invoice' JRequest setVar 'jform' data php file upload joomla joomla2.5 share..

Access Joomla 2.5 from external script to get article by id

http://stackoverflow.com/questions/15042262/access-joomla-2-5-from-external-script-to-get-article-by-id

initialise echo mainframe getCfg 'sitename' articleId JRequest getInt 'Itemid' db JFactory getDBO sql SELECT fulltext FROM..

How to log into joomla through an external script?

http://stackoverflow.com/questions/2075335/how-to-log-into-joomla-through-an-external-script

credentials array credentials 'username' JRequest getVar 'username' '' 'method' 'username' credentials 'password'.. 'username' '' 'method' 'username' credentials 'password' JRequest getVar 'passwd' '' 'method' 'passwd' perform the login action..

how to use Jquery AJAX in Joomla Components?

http://stackoverflow.com/questions/3157488/how-to-use-jquery-ajax-in-joomla-components

testModel testController getModel 'test' userName JRequest getVar 'username' parent display tpl but when i run this code...why..

Joomla : how to get the url of a specific Menu itemID?

http://stackoverflow.com/questions/4529567/joomla-how-to-get-the-url-of-a-specific-menu-itemid

php url menu joomla share improve this question itemid JRequest getVar 'Itemid' application JFactory getApplication menu application..

How to get article text by article ID in Joomla?

http://stackoverflow.com/questions/7219876/how-to-get-article-text-by-article-id-in-joomla

post get and using variable id as its number articleId JRequest getInt 'id' db JFactory getDBO sql SELECT fulltext FROM #__content.. is empty EDIT to get articleId from anywhere articleId JRequest getVar 'option' 'com_content' JRequest getVar 'view' 'article'.. anywhere articleId JRequest getVar 'option' 'com_content' JRequest getVar 'view' 'article' JRequest getInt 'id' 0 share improve..