Skip to content
  • View menu
  • View sidebar

Ronniee

Software Engineer

  • Home
  • About Me
  • Quran
July 2025
M T W T F S S
 123456
78910111213
14151617181920
21222324252627
28293031  
« Jul    

Recent Posts

  • Get all $_POST in Joomla 3.X
  • Show the list of files
  • Get Super users in Joomla
  • Set value of a radio button
  • How to position fancybox on top

Categories

  • GIT Command
  • Javascript
  • Joomla2.5.X
  • Joomla3.X
  • jQuery
  • PHP
  • Uncategorized

Author / admin

July 11, 2018July 11, 2018 by admin

Get all $_POST in Joomla 3.X

  • Joomla3.X, PHP
  • Leave a comment

Instead of using $post = JRequest::get('post') to get all $_POST, you should use $post = JFactory::getApplication()->input->getArray(array()) in Joomla 3.X.

November 28, 2016November 28, 2016 by admin

Show the list of files

  • GIT Command
  • Leave a comment

ls -t1

This will list all files ordered by access time

head -n 5

list the latest 5 files in the directory

October 25, 2016 by admin

Get Super users in Joomla

  • Joomla3.X, PHP
  • Leave a comment