In joomla 1.7 i am creating a custom module for registration. How I can check the user field

is empty or not? Which function is used to check user input field like isset() which is used

in php.

I want to check for form is submitted or not in joomla, according to that i want to display information.

link|improve this question
did you mean if a user is logged in ? – Ahmad Feb 7 at 6:51
i want to check user input like isset($_POST['name']) for access from JRequest::getVar(). – avesdon Feb 7 at 6:58
feedback

1 Answer

You can use $_POST && $_GET or use the functions of jommla framework (recommended) JRequest::getString('INPUT_NAME','DEFAYLT_VALUE')

check this link : http://docs.joomla.org/JRequest/1.6

so to check use :

$Name = JRequest::getString('name_field',false);

if(false){
//NOT SET
}else{
//ISSET
}
link|improve this answer
thanx a lot........ – avesdon Feb 7 at 7:07
Welcome, But plz mark the answer as accepted if you find it like this – Ahmad Feb 7 at 7:09
@avesdon if you get solved the problem then please accept the answer to click on the check mark and +1 – jogesh_p Feb 7 at 8:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.