Let's start with the loops eh?
dm:
var/i=5
while(i>0)
world<<i
i--
for(i,i>0,i--)
world<<i
do
world<<i
i--
while(i)
Pretty simply stuff eh? Now PHP
<?php
$i=5;
while($i>0)
{
echo $i;
$i--;
}
for($i,$i>0,$i--)
{
echo $i
}
do
{
echo $i
$i--
}
while($i>0)
?>
Don't tell me you don't see similarities!
Along with that, php has;
if's (Usual)
else if
else
switch
ALL the same operators (++,--,|| ect)
Variables, like so $variable = 100
Procs (Known as functions in php)
Lists (all the types, listname[] listname("ahh"=1) ect ect, known as arrays)
While I know I'm nitpicking, it's the closest to DM I've seen, out of C, C++, Linux, Perl, HTML and Torque.
*Shifty eyes*
That's bull.
C++ isn't the most powerful, not by a long shot.
C > C++
Linux > C++
Ruby Basically = Linux, and Linux is NOT easy to learn.
HTML doesn't really qualify as it's not really a PROGRAMMING language >.>