how can i put letters in a single word in php ???
exemple:
for ($i = 0, $j = strlen($string); $i < $j; $i++) {
$res=$string[$i];
$res = chr(ord($res)+2);
echo $res;
}
i want to put all the $res in a single word... Any help ?? Thank You
MVC is the current buzz in web application architectures. It comes from event-driven desktop application design and doesn't fit into web application design very well. But luckily nobody really knows what MVC means, so we can call our presentation layer separation mechanism MVC and move on. (Rasmus Lerdorf)