Use unescape(“%26”) to put an ampersand (&) in redirection URLs with javascript…
<script type=”text/javascript”>
var myURL = “http://del.icio.us/cwilmire?setcount=100” + unescape(“%26”) + “settagview=cloud”;
window.location = myURL;
</script>
Use unescape(“%26”) to put an ampersand (&) in redirection URLs with javascript…
<script type=”text/javascript”>
var myURL = “http://del.icio.us/cwilmire?setcount=100” + unescape(“%26”) + “settagview=cloud”;
window.location = myURL;
</script>
Many programs will log data to a CSV (comma separated value) file. These files are usually structured with a standard format. Let’s say you want to import the data into a database or spreadsheet. There is an alternative to importing 2, 5, 10 or 100+ files one at a time. You can concatenate the files into one file. Here is how you do it…