Dev License: This installation of WHMCS is running under a Development License and is not authorized to be used for production use. Please report any cases of abuse to abuse@whmcs.com

Querying Input in Joomla 3x Print

  • 3

How to pull request / input / cookie parameters in Joomla.

// General Request - REQUEST dataset
JFactory::getApplication()->input->get('key', $default);

// GET specific dataset
JFactory::getApplication()->input->get->get('key');

// POST specific dataset
JFactory::getApplication()->input->post->get('key');

// COOKIE specific dataset
JFactory::getApplication()->input->cookie->get('key');

Was this answer helpful?

« Back

Powered by WHMCompleteSolution