View Single Post
Old 2009-06-18, 09:25 PM   #10
rooty
A woman is like beer. They look good, they smell good, and you'd step over your own mother just to get one!
 
rooty's Avatar
 
Join Date: Sep 2008
Posts: 51
php is the easiest thing to learn ever...

as a starter ones you get a hang of loops & database connectivity it becomes very very handy

oh and if you choose to use it please don't be another idiot that do things the stupid way

PHP Code:
<?
$title 
"my sexy title";
$name "rooty";

echo 
"<html>
<head>
<title>"
$title ."</title>
</head>
<body>
blah blah some text and " 
$name " loves php
</body>
<html>"
;

?>
this is so much quicker

PHP Code:
<?

$title 
"my sexy title";
$name "rooty";

?>
<html>
<head>
<title><?=$title?></title>
</head>
<body>
blah blah some text and <?=$name?> loves php
<body>
<html>
__________________
Nothing to see here really - My boring blog
rooty is offline   Reply With Quote