Whats this called?
Posted: Fri Jun 27, 2003 6:14 pm
Hey guys,
I have been learning PHP for last 2 weeks and playing around with it. Lately I have come across examples and used stuff that looks like this:
That combines all the stuff using periods and places it into one variable. That is what I'm trying to do but I can't find out what it is called or any documentation on it. Could anyone please point me to a link that could help me learn about this? Thanks.
BTW, heres what I'm trying to do.
Which I was hoping it would display something like "January 01, 2003". (I'm trying to reformat the date stored in MySQL.)
I have been learning PHP for last 2 weeks and playing around with it. Lately I have come across examples and used stuff that looks like this:
Code: Select all
<?php
$uploaddir = $_SERVER['DOCUMENT_ROOT'] . $category."/";
?>BTW, heres what I'm trying to do.
Code: Select all
<?php
$newdate=$month." ".$day.", "$year;
?>