New Member
Posts: 42
Joined: Nov 2007
|
is it possible to covert this to cfm?
<?php
$room = "RappinLounge"; $ip_address = $_SERVER['REMOTE_ADDR']; $api_secret_key = "00b93188189a21ff2b3b7fe16981e446";
$hash = md5($room . ":" . $ip_address . ":" . $api_secret_key);
?>
|