• User Attivo

    Tracking Pixel con Php

    Grazie ad Erise che mi ha segnalato questa guida thatsmith . com /2008/11/how-to-make-tracking-images-with-php sono riuscito a creare il pixel tag che mi serviva. Ora devo personalizzarlo, ma conosco pochissimo il php sono in difficoltà e mi servirebbe averlo per domani mattina ed il tempo stringe.

    Questo è lo script diciamo di base :

    <?php
    header("content-type: image/png");echo gzinflate(base64_decode("6wzwc+flkuJiYGDg9fRwCQLSjCDMwQQkJ5QH3wNSbCVBfsEMYJC3jH0ikOLxdHEMqZiTnJCQAOSxMDB+E7cIBcl7uvq5rHNKaAIA"));
    $db=new PDO('mysql:host=localhost;dbname=*********', *******',
    '*******');
    $db->prepare('INSERT INTO hits (id,ip,page,timestamp) VALUES (?,?,?,?)')->execute(array($_GET['id'],$_SERVER['REMOTE_ADDR'],
    $_SERVER['HTTP_REFERER'],time()));
    ?>
    

    Mi serve un ulteriore parametro ovvero "Orderid". Ho aggiunto un campo alla tabella Hits -orderid- appunto (campo testo). Come faccio ad inserire in questo script la riga di codice che riempe il campo "orderid"?

    Grazie