aRo`

automating your e-commerce

You can use this javascript function to resize the height of your iframe depending on the size of your parent page.
PLAIN TEXT
JAVASCRIPT:

<script language="JavaScript">

function iFrameHeight() {

if(document.getElementById &amp;&amp; !(document.all)) {

h = document.getElementById('main').contentDocument.body.scrollHeight;

document.getElementById('main').style.height = h + 100;

}

else if(document.all) {

h = document.frames('main').document.body.scrollHeight;

document.all.main.style.height = h + 100;

}

}

</script>

I have been searching for an RSS Reader that integratis with my PDA(Pocket PC).Finally i found RSS Popper wich integrates with MS Outlook.The feeds can be browsed as emails.A benefit from RSS Popper is that you even can fetch the webpage when the RSS feed only offers partial feeds.

But the main reason why i use [...]

Gorilla Ad for Cadbury Dairy Milk

Gorilla Ad for Cadbury Dairy MilkUploaded by pubard1

Just a quick not on mod_rewrite & wordpress.
If you want to write your own .htaccess code in combination with wordpress you have to put it above the default wordpress code.
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} ^arolabs\.com$ [NC]
RewriteRule ^(.*)$ http://www.arolabs.com/$1 [R=301,L]
</ifmodule>
# BEGIN WordPress
<ifmodule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</ifmodule>
# END WordPress

I have several niche price comparison sites where i need to update my productlist on a regular basis. When a merchant delivers his datafeed from his webserver(http://domain.com/feed.csv) you can use php's filecopy function.
Other merchants only offer an option to fetch there datafeed from an FTP server(ie shareasale merchants). This is where the code below offers [...]