Actually, I tried it a different way and I got the results I needed... this is what I did, $file_var = "http://www.bignickel.net/full_ad/"; $db_name = "db_name"; $table_name = "table_name"; $connection = @mysql_connect("localhost", "user_name", "password") or die ("Could not connect to database. Please try again later."); $db = @mysql_select_db("$db_name",$connection) or die ("Could not select database table. Please try again later."); $sql = "UPDATE $table_name SET ad01_t=\"$file_var$files\""; //this gave me the results, as you can see I just created a new variable with the path in it print $sql; $result = @mysql_query($sql, $connection) or die ("Could not execute query. Please try again later."); ?>
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php