Posted: Thu Jul 20, 2006 10:51 am
Try my code again. I noticed that there was a concatenation issue that I fixed at about the same time as you grabbed it. Try it again and see.
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
What is a concatenation Issue ???Everah wrote:Try my code again. I noticed that there was a concatenation issue that I fixed at about the same time as you grabbed it. Try it again and see.
Code: Select all
require $abs . '/secure/config.php';Code: Select all
require '$abs/secure/config.php';Code: Select all
<?php
$string1 = 'This is a string';
$string2 = 'This is another string';
echo $string1 . ' and ' . $string2;
// Outputs:
// This is a string and This is another string
?>