⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagepath_adjust.php

📁 phpBook 是個建立於 PHP 及 MySQL 的留言板。 功能包括: -- 內建多種語法 (包括中文) -- IP 封鎖及禁止存取 -- 可自訂表情符號 -- URL-Code
💻 PHP
字号:
<?# If you change your path on your server, the image-path stored in messages & comments point's to the oldpath,# this little script correct this, only enter your newpath and run the script# DON NOT REMOVE THE "=" in path-variables below !!!!require ("../config.php");$oldpath
="=images/";$newpath="=products/book/images/";mysql_connect($server, $db_user, $db_pass);    #  Start the Page    #################################################################################################    $result = mysql_db_query($database, "SELECT * FROM guestbook ORDER by id");    while ($db = mysql_fetch_array($result)) {	$message=ereg_replace($oldpath, $newpath, $db[message]);	$comment=ereg_replace($oldpath, $newpath, $db[comment]);	echo"$message<br>";	mysql_db_query($database, "UPDATE guestbook set message='$message',comment='$comment' WHERE id='$db[id]'");    }    #  Disconnect DB    #################################################################################################    mysql_close();?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -