top-image

Archivio di settembre 20th, 2009

Sintesi dell’andamento della domanda dei mutui ipotecari
Secondo una recente ricerca Databnk-Cerved la crisi di liquidit ...leggi tutto»
Classifiche musica, music charts – week 38 – 2009
Le classifiche musicali della 38 ...leggi tutto»
Trucchi tomb raider legend – psp
Trucchi per Tomb Raider Legend - Console PspTrucchi di Tomb Raider Legend per Utilizzare il Cheat Mode...Completa gli obbiettivi che ti indico per sbloccare i cheats corrispondenti. Quando un'obbiettivo ...leggi tutto»
Trucchi tom clancy’s splinter cell essentials – psp
Trucchi per Tom Clancy's Splinter Cell Essentials - Console PspTrucchi di Tom Clancy's Splinter Cell Essentials per Sbloccare alcuni Extra del Gioco...Missioni Bonus = Nella schermata della missione bonus, tenendo premuto SELECT, premi L, R, L, R, L, R. Inserisci il codice nuovamente e sbloccherai la missione bonus successiva. Le missioni bonus sono "Paris Nice", "Heroin Factory" e "Television Free Indonesia".Tutte le Missioni Bonus = Con la tua connessione ad internet della Psp, va sul sito "www.splintercellessentials.com". Seleziona "Psp User" e inserisci il codice "A27200203S".Riferimento a "Tom Clancy's Splinter Cell Chaos Theory" = Nella missione dopo il cimitero, va nella ...leggi tutto»
Videogiochi 14 di 25
Storia dei Videogiochi Parte 14 di 25Il Centro ICT, inaugurato nel 1999, con un fondo di 45.000.000$ viene creato per portare i militari ai videogiochi e i videogiochi ai militari. Sebbene Full Spectrum Warrior sia stato alla fine lanciato sul mercato, originariamente era stato creato per l'addestramento tattico dei soldati dell'esercito Statunitense, e verr ...leggi tutto»
Trucchi pirates of the carribean – psp
Trucchi per Pirates Of The Carribean Dead Man's Chest - Console PspTrucchi di Pirates Of The Carribean Dead Man's Chest per Sbloccare alcuni Extra del Gioco...Legenda: "G=Gi ...leggi tutto»
[php] contare il numero di click in un link!
  if (empty($_GET['url'])) { $url = 'http://www.yoursite.com/'; } else { if (get_magic_quotes_gpc()) $_GET['url'] = stripslashes($_GET['url']); $gURL = mysql_real_escape_string($_GET['url']); $result = mysql_query("SELECT ident FROM links WHERE ident = '".$gURL."'"); if (mysql_num_rows($result) == 1) { $url = 'http://'.$gURL; $id = mysql_result($result, 0, 'ident'); $IP = mysql_real_escape_string($_SERVER['REMOTE_ADDR']); $time_diff = 3600*24*14; // count ones in 14 days $sql = sprintf("SELECT COUNT(*) AS testval FROM clicks WHERE ip_adr = '%s' AND click_time+%d > NOW() AND site_id = %d", $IP, $time_diff, $id); $res = mysql_query($sql) or die(mysql_error()); $test = mysql_result($res, 0, 'testval'); if ($tell == 0) { mysql_query(sprintf("INSERT INTO clicks SET ip_adr = '%s', site_id = ...leggi tutto»
Inviare emails tramite smtp con phpmailer e gmail
    define('GUSER', 'you@gmail.com'); // Gmail username define('GPWD', 'password'); // Gmail password   function smtpmailer($to, $from, $from_name, $subject, $body) { global $error; $mail = new PHPMailer(); // create a new object $mail->IsSMTP(); // enable SMTP $mail->SMTPDebug = 0; // debugging: 1 = errors and messages, 2 = messages only $mail->SMTPAuth = true; // authentication enabled $mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for Gmail $mail->Host = 'smtp.gmail.com'; $mail->Port = 465; $mail->Username = GUSER; $mail->Password = GPWD; $mail->SetFrom($from, $from_name); $mail->Subject = $subject; $mail->Body = $body; $mail->AddAddress($to); if(!$mail->Send()) { $error = 'Mail error: '.$mail->ErrorInfo; return false; } else { $error = 'Message sent!'; return true; } }   //esempio applicato   if (smtpmailer('to@mail.com', 'from@mail.com', 'yourName', 'test mail message', 'Hello World!')) { // do something } if (!empty($error)) echo $error;   fonte: www.sastgroup.com ...leggi tutto»
10 consigli utili per imparare adobe flash cs4
Link al tutorial: http://www.hongkiat.com/blog/10-killer-flash-tips-for-beginners/ fonte: www.sastgroup.com ...leggi tutto»
[php] eliminare il primo carattere di una stringa!
  function deleteFirstChar( $string ) { return substr( $string, 1 ); }   //esempio applicato $stringa ="Questo blog ...leggi tutto»
Pagina 1 di 2:1 2 »
bottom-img