#tips
3 posts tagged tips. Clear filter
-
PHP Headers for Sending CSV File Downloads
If you would like to force a file download prompt to the user, instead of just outputting the text to the browser, use the following headers. <?php $filename = "some-filename";...
-
Get Method Name as String in Python
Here is how to get the string representation of a method in Python def mymethodname(): print "Hello World" mymethodname.name = 'mymethodname' Short and sweet!
-
Renaming Routes in Rails 3 with :As and :Controller
Renaming routes in Rails 2.\ is straight forward. It goes something like this. This will give you users\path and form\for(User.new) helpers, for instance, mapping the url to /members instead of...