Recently when trying to modify the success.phtml section in magento, I found it very frustrating the fact you had to make new fake orders to see your modified file. Of course I could have used firebug or some extension like that but I much prefer making modifications and hitting refresh.
After …
Posted on January 22, 2012 by Paul Donnelly .
Posted on July 5, 2011 by Paul Donnelly .
<?php
$file_handle = fopen("path/to/file/Book2.csv", "r");
while (!feof($file_handle) ) {
$line_of_text = fgetcsv($file_handle, 1024);
print "<p>" . $line_of_text[0] . "</p>";
print "<p>" . $line_of_text[1] . "</p>";
print "<p>" . $line_of_text[2] . "</p>";
}
fclose($file_handle);
?>
» Sample CSV File
Posted on May 3, 2009 by Paul Donnelly .
Ruby on rails is an open source web development application that was created to make the everyday web programmer’s life that little bit easier. Rails is about allowing beautiful code to solve the problems most people have most of the time in web-application development. It’s about taking the pain away …