Development

I've been working on an online Cinema guide that has the Arab world as its primary target audience for the last few weeks. It's basically a Drupal-based multisite (using Domain Access to manage the databases). Going to release a case study on that once the project is done.

So I was reading my feeds this morning as usual and I find this, which lead me to this. This is one of the first sites providing this sort of functionality done on Drupal. And it's Brazilian. :D

Refilmagem is a Drupal-based website with movie showtimes available for several Brazilian towns, designed by Zee (would love to lay my hands on their themes ;))

Here's a screenshot:

Refilmagem

The website is located at http://refilmagem.com.br (it seems to redirect you to São Paulo if you're outside Brazil).

Good job everyone involved in this.

O código seguinte é bem simples, vai no corpo da condição (PHP) da visibilidade do bloco. Se o usuário estiver usando IE inferior a versão 7, esse block será visível a ele(a).


The following code displays a block only to users running Internet Explorer versions less than 7. It should go in the Page specific visibility settings for the block.

<?php
    $browser = $_SERVER['HTTP_USER_AGENT'];

    //running internet explorer
    if($msie = strpos($browser, "MSIE"))
    {
        //version number
        $ver = substr($browser, $msie + 5, 3);