Use below PHP Script to merge CSV files into one master CSV file and optional to remove CSV header line. <?php /** * 7design.studio * Merge multiple CSV files into one master CSV file * Remove header line from individual file */ $directory = "FOLDERDIRECTORY/*"; // CSV Files Directory Path // Open and Write Master... Continue Reading →
Responsive Pricing Table
Responsive Web Pricing Template, four column pricing page design, each column contain related pricing details. LIVE PREVIEW Features: HTML5 & CSS3 Four Column Pricing Template Cross Browser Compatible
Object Oriented Programming
Object-oriented programming(OOP) Language is a programming style, considered more efficient and advanced than procedural language. Object-oriented programming languages include C#, Java, Ruby, PHP, C++. Procedural programming is the standard approach used in traditional computer languages C, FORTAN, Pascal. When our project grow in more complexity, we opt to choose Object-oriented programming rather than Procedural programming.... Continue Reading →
Educational Website Template
The Class Website (Homepage), It’s fully responsive design ready to look stunning on any device. Website based on School Management and Parent/Teachers Communication Application. LIVE PREVIEW Features: Minimal Code Responsive Website Template Educational Website HTML5 & CSS3 Supports major browsers.
PHP Namespaces
Namespace benefits, avoiding name collision when we integrate from different resources like third party libraries & packages. Define a namespace: We define namespaces at the top of page with "namespace" keyword. No other codes allowed to place before "namespace" keyword - with one exception, "declare" keyword. namespace Le\Product\Age; How to use a namespace class: Example... Continue Reading →
Export Magento categories to CSV
Using the below code, you can export magneto category list as CSV format. Place the code in your root directory, and the exported file will be saved on var/export directory. CSV format includes "Root Category Id", "Category Id", "Category Name", "Category URL", "Category Image", "Category Page Title", "Category Meta Keywords", "Category Meta Description","Category Is Active"... Continue Reading →
Types of Coding in Webdesign | Web Development
Basic web development(Coding types) might consist of: Client side coding: HTML5 and CSS3 Flash Java Script jQuery Microsoft Silverlight AJAX Server side coding: PHP (open source) ASP (Microsoft proprietary) ActiveVFP (open source) CSP, Server-Side ANSI C ColdFusion (Adobe proprietary, formerly Macromedia, formerly Allaire) CGI Erlang, with Linux, Yaws, Mnesia, Erlang (LYME) solution stack Groovy (programming... Continue Reading →
Website Form Template
Responsive Subscribe Form Template, It is clean and fluid web design. You can easily integrate into your websites. LIVE PREVIEW Features: Responsive Template HTML Form HTML5 & CSS3 Cross Browser Compatible
Magento: One Page Checkout Order Review
During Magento One Page Checkout, i used to display order details (subtotal, tax, shipping, grand total ) at Payment Information section. Use checkout session, to retrieve order data. //Order Totals $orderDetails = Mage::getSingleton('checkout/session')->getQuote()->getTotals(); //Total object $subtotal = $orderDetails["subtotal"]->getValue(); //Subtotal value $shippingAmount = Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getShippingAmount() //Shipping Amount $taxAmount =Mage::helper('checkout')->getQuote()->getShippingAddress()->getData('tax_amount') //Tax Amount if(isset($orderDetails['discount']) && $orderDetails['discount']->getValue()) { $discount =... Continue Reading →