Stop Magento Redirecting to Empty Cart on Success.phtml

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 …

CSV to HTML using PHP

<?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

Ruby on Rails Free Audio and Video Tutorials

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 …