really simple question.
Posted: Fri Feb 10, 2006 12:54 pm
Hey guys,
I am embarressed to even ask this question.
I am trying to combine a varible with the value of '1' with the letter 'a' and assigning it to a new varible.
The output should be "1a".
Thanks
I am embarressed to even ask this question.
I am trying to combine a varible with the value of '1' with the letter 'a' and assigning it to a new varible.
Code: Select all
<?php
$i = 1;
$check = "$i'a'";
echo("$check");
?>Thanks