Ronildo Costa says:
The link to download the example is not working, it might need be added http:// before www.
View ArticlePoornima Alexander says:
Thank you very much for this post. It is really advantageous. Thanks a Lot!
View ArticleJosh says:
Great article! My favourite among all about joomla 2.5 module coding i've read.
View ArticleMindi says:
Very nice tutorials! Only thing I don't understand is 'How you passed $userCount parameter to database query'. I don't see this in your code. Thanks! Mindi
View ArticleJohannes says:
Thanks a lot for this great straight-forwar d introduction to Joomla 2.5 development. Exactly what I need to get my feet wet; having to do some Joomla stuff for a client right now. There are two things...
View ArticleBrad Traversy says:
Mindi, you are correct, I didnt have the user count in the query. I changed the query in helper.php to use it. Please see above
View ArticleBehRang says:
nice tutorial that's worked for me, just can you help if I want to add a drop-down list field to XML file, retrieve data from database? now I created it but the options is manual not from DB !
View Articledarshan says:
i tried it....its showing a error in default.php file in foreach loop,like this: Invalid argument supplied for foreach()
View Articlexalibeut says:
Hi Brad, very good introduction for joomla module creation. How would you go with an AJAX Database Module. I am trying to create a module that will fetch information from a database with ajax. The main...
View ArticleRaul says:
I have the same question as BehRang I want to add a drop-down list field to XML file, retrieve data from database? for example table names and display all the tables in the database? Thanks
View Articlesandro says:
Hey, very cool tutorial! It worked fine with me, but I got one question.. How come if I simply change $row->name into $row->email I get an error and nothing works anymore? Even if I have that...
View Articlesandro says:
Hi Brad, it's me again! I got it, sorry.. I have to change the $query too: $query = "SELECT email FROM #__users LIMIT {$userCount}"; but how can I retrieve more than one field? (and.. I know this is...
View ArticleVipul says:
1. How can I make some fields mandatory in the basic options that are defined in the xml file? 2. How can I apply some checks over the entered fields in the options(I want the user to enter URLs only)?
View ArticleBrad Traversy says:
To select more than one field just add them to your query after "email" or use an asterisk(*) to select ALL fields on that table SELECT email,field2,fi eld3 FROM #__users LIMIT.... OR SELECT * FROM...
View ArticleBrad Traversy says:
I will be making a tutorial on this.. Basically, you need to define a custom field type in order to display database fields. You need to define a class that extends JFormFieldList. See this forum post...
View ArticleArmando Quinones says:
Hey there.. what about this scenario... I have a module installed that I edited to change what it does .. I now want to install the original module and keep both .. Should I.. change the values of the...
View Article