Hello Aaron,

Wednesday, February 11, 2004, 3:00:47 PM, you wrote:

AM> $section1 = file_get_contents("table_create.php");
AM> str_replace($search, $replace, $section1);

You need to assign the output of str_replace to something:

$new_section = str_replace($search, $replace, $section1)

-- 
Best regards,
 Richard                            mailto:[EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to