New Features of HTML5
-
zendnwar
-
December 31, 2012
-
HTML5
-
0 Comments
New Features: HTML5 introduces a number of new elements and attributes that helps in building a modern websites. Following are great features introduced in HTML5. New Semantic Elements: These are like <header>, <footer>, and <section>. Forms 2.0: Improvements to HTML web forms where new attributes have been introduced for <input> tag. Persistent Local Storage: To achieve without resorting to third-party …
Continue Reading
What is !DOCTYPE in HTML5?
-
zendnwar
-
December 31, 2012
-
HTML5
-
0 Comments
The HTML <!DOCTYPE> tag is used for specifying which language and version the document is using. This is referred to as the document type declaration (DTD). This is compliant to trigger standards mode in all modern browsers and will work in any browser. With the introduction of HTML5, the <!DOCTYPE> tag is mostly useless, as HTML 5 does not require …
Continue Reading
What is HTML5?
-
zendnwar
-
December 31, 2012
-
HTML5
-
1 Comment
HTML5 will be the new standard for HTML. HTML5 is the latest and most enhanced version of HTML. The previous version of HTML, HTML 4.01, came in 1999. The web has changed a lot since then.HTML or Hyper Text Markup Language is the main foundation of a web page. Without HTML no website can be displayed. HTML is a markup …
Continue Reading
Domain Registration in Dhaka, Bangladesh
-
zendnwar
-
December 29, 2012
-
Others
-
0 Comments
PRICE PER YEAR 1 yr 2 yrs 3 yrs 5 yrs 10 yrs .com * Tk.1200 Tk.1200 Tk.1200 Tk.1100 Tk.1050 .net * Tk.1200 Tk.1200 Tk.1200 Tk.1100 Tk.1050 .org * Tk.1200 Tk.1200 Tk.1200 Tk.1200 Tk.1200 .info * Tk.1100 Tk.1100 Tk.1100 Tk.1050 Tk.1050 .tv* Tk.4200 Tk.4200 Tk.4200 Tk.3800 Tk.3600 .ws* Tk 1200 Tk 1200 Tk 1200 Tk 1200 Tk 1200 Contact …
Continue Reading
E-mail hosting in Dhaka, Bangladesh
-
zendnwar
-
December 27, 2012
-
Others
-
0 Comments
Choose your Email Service! Silver Gold Diamond Yearly Fee Tk. 3000 Tk.7000 Tk.10000 Email Accounts 10 30 50 Mailbox Quota 2GB 2GB GB Auto Responder/Forward yes yes yes POP / IMAP/ SMTP/ AUTH yes yes yes Abuse/Virus Protection yes yes yes Admin Panel yes yes yes Contact Number : 01716471039 Skype address : anwarhossain07
Continue Reading
Web hosting in Dhaka, Bangladesh.
-
zendnwar
-
December 27, 2012
-
Others
-
0 Comments
Super Economy Economy Silver Gold Platinum Disk Space 1 GB 2 GB 3 GB 4 GB 30 GB Easy to use Control Panel YES YES YES YES YES FREE DNS Management YES YES YES YES YES MySQL Database YES YES YES YES YES PHP Support YES YES YES YES YES Python, Ruby, Perl, PHP YES YES YES YES YES Email …
Continue Reading
How to show Subcategory Alphabetically in Magento?
-
zendnwar
-
December 27, 2012
-
Magento
-
0 Comments
Just copy and paste in your page like list.phtml or home.phtml <?php $cats = Mage::getModel(‘catalog/category’)->load(51)->getChildren(); $catIds = explode(‘,’,$cats); $categories = array(); foreach($catIds as $catId) { $category = Mage::getModel(‘catalog/category’)->load($catId); $categories$category->getName() = $category->getUrl(); } ksort($categories, SORT_STRING); ?> <ul> <?php foreach($categories as $name => $url): ?> <li> <a href=”<?php echo $url; ?>”><?php echo $name; ?></a> </li> <?php endforeach; ?> </ul> Hope it will …
Continue Reading
How do I call a static block inside top.phtml
-
zendnwar
-
December 20, 2012
-
Magento
-
9 Comments
This is very simple call to a static block in top.phtml. At first create a static block from magento admin panel.Like block identifer name is “speciall_message”. Now go to your top.phtm file and paste below code. <?php echo $this->getLayout()->createBlock(‘cms/block’)->setBlockId(‘speciall_message’)->toHtml() ?> Hope it will work.
Continue Reading
Check condition for login-logout in magento
-
zendnwar
-
December 18, 2012
-
Magento
-
0 Comments
Check condition for login-logout in magento This is very simple login and logout condition in magento. Just understand this code. First if condition for login area And else condition for logout area. <?php if (! Mage::getSingleton(‘customer/session’)->isLoggedIn()): ?> <a href=”<?php echo Mage::helper(‘customer’)->getLoginUrl(); ?>”><?php echo $this->__(‘Login’) ?></a> // this is login area. you can add you custom code with alter anchor link. …
Continue Reading
How to get a custom SQL query result in magento
-
zendnwar
-
December 17, 2012
-
Magento
-
0 Comments
How to get a custom SQL query result in magento $qurey = Mage::getSingleton(‘core/resource’)->getConnection(‘core_write’); $queryresult = $qurey->query(“select * from tablename “); while ($rows = $queryresult->fetch() ) { $categoryIds=$rows‘id’; } Hope it will work.
Continue Reading