Hi, I'm Ahmad. I make websites with Joomla!

Welcome, Feel free to navigate my website and I will be glad to hear from you.

WIN A FREE COPY OF "Mastering Joomla! 1.5 Extension and Framework Development"

Recommended Book

0523_Mastering_Joomla_1

Find more freelance jobs

What's going on twitter

Blog
07
Aug
2009
Counting rows from MySQL database using PHP/SQL PDF Print E-mail

DatabaseThere are two ways to retrieve the number of rows selected from a database; either by using the PHP function mysql_num_rows() or by using the SQL COUNT() Function. Take a look at the following :

  1. Using PHP
        $query = "SELECT (column) FROM table WHERE column = value";
        $results = mysql_query($query);
        $rows = mysql_num_rows($results); 
        echo $rows ;
  2. Using SQL
       $query = "SELECT COUNT(column) FROM table WHERE column value";
       $results = mysql_query($query);
       $rows = mysql_fetch_array($results);
       echo $rows[0];
Read more...
 
31
Jul
2009
Joomla 1.5.14 is out PDF Print E-mail

Joomla!New Joomla! update is available ver 1.5.14 This is mainly released to fix 2 issues on the TinyMCE Editor and the Media Manager. After upgrading to 1.5.13 user got this error when trying to access com_media :

Fatal error: Call to a member function authorize() on a non-object in /path/administrator/components/com_media/views/media/tmpl/default.php on line 64

It also contains one low-level security fix to the com_mailto.

Big Thanks to bug squad team and everyone participated on this update. It has been only 8 days since 1.5.13 was released!!

To upgrade simply download the apropriate release, extract it on your computer and upload it to replace the old files. Don't forget to backup your website first!

 
26
Jul
2009
sh404SEF hack for better URLs PDF Print E-mail

sh404SEF Logosh404SEF is a Joomla! extension helps you creating better SEF URLs. It's full of features and parameters that helps you to acheieve the format you want for your Joomla! website. On July 24th 2008 the JED editors announced that sh404SEF has been added to the editors' pick. Development cycle continued and sh404SEF became one of the must have extensions.

Read more...
 
23
Jul
2009
Joomla 1.5.13 is out PDF Print E-mail

Joomla!New Joomla! update is available ver 1.5.13 It contains fix for 26 bug, two moderate-level security fixes, and one low-level security fix.

Thanks to bug squad team and everyone participated on this update. It has been only 3 week since 1.5.12 was released!

To upgrade simply download the apropriate release, extract it on your computer and upload it to replace the old files. Don't forget to backup your website first!

 
17
Jul
2009
Tablecloth (modified) - Javascript Library for tables PDF Print E-mail

Alen Grakalic wrote:

Tablecloth is lightweight, easy to use, unobtrusive way to add style and behavior to your html table elements. By simply adding 2 lines of code to your html page you will have styled and active tables that your visitors will love Smile

TableTablecloth is provided by CSS Globe.

I created a modified version allowing the user to specify a class for the tables he want to style. After commenting about it some users asked me to share it.

Download the modified version, edit the config on the CSS file and enjoy nice more usable tables on your website!

 
<< Start < Prev 1 2 3 4 5 6 7 8 9 Next > End >>

Page 4 of 9