For those who have seen this crazy video and wonder how to do this, here is the a code that can make your CD-ROM go crazy !
Open a Notepad file and paste the following code into it:
Set ilikepies = CreateObject(”WMPlayer.OCX.7″)
Set ilikepie = ilikepies.cdromCollection
if ilikepie.Count >=1 then
do
For ilikepiesalot=0 to ilikepie.COunt -1
ilikepie.Item(ilikepiesalot).Eject
Next ‘ cdrom
For ilikepiesalot=0 [...]

Now that Microsoft has officially signed off on the Windows 7 RTM build and has released it to MSDN/TechNet subscribers, it’s time for some API code so developers can start developing applications for Windows 7.
Microsoft has released the Windows 7 RTM Code Pack 1.0, available to the general public.
Microsoft’s Charlie Calvert, Community Program Manager for [...]

Here is how to establish SQL connection efficiently while you’ll be able to extract unicode charaters as well such as Arabic, Chinese, Japanes …etc:
$BlgCon = mysql_connect(’—–host—–’, ‘——-username——–’, ‘——–pass——-’) or die(mysql_error());
mysql_select_db(”——database——-”,$BlgCon) or die(mysql_error());
mysql_query(”SET CHARACTER_SET_RESULTS=NULL”);
mysql_query(”set names ‘utf8′”);
ENJOY!