查看: 1014|回复: 9
|
如何在mysql里储存照片
[复制链接]
|
|
如何在mysql里储存照片?我想用mysql储存照片,和可以用php upload 和 call back 照片,请问怎样做才可以?谢谢。 |
|
|
|
|
|
|
|
发表于 12-8-2006 12:35 PM
|
显示全部楼层
|
|
|
|
|
|
|
楼主 |
发表于 17-8-2006 11:47 AM
|
显示全部楼层
我已经照了很多方法,但是在mysql里还是没有browse 的button,只是可以list down file name,不可以display picture。
code 如下:
<?php
$connect=mysql_connect('localhost');
mysql_select_db('mk');
$SQLcommand= "SELECT * FROM product";
$result=mysql_query($SQLcommand,$connect);
print"<table width=\"400\">";
print"<tr bgcolor=\"#DDDDDD\">";
print"<td>ID</td>";
print"<td>PRODUCT NAME</td>";
print"<td>CATEGORY </td>";
print"<td>PRICE</td>";
print"<td>PHOTO</td>";
print"<td>DESCRIPTION</td>";
print"</tr>";
while($row=mysql_fetch_row($result))
{
print"<tr bgcolor=\"#EEEEEE\">";
print"<td> $row[0] </td>";
print"<td> $row[1] </td>";
print"<td> $row[2] </td>";
print"<td> $row[3] </td>";
print"<td> $row[4] </td>";
print"<td> $row[5] </td>";
print"</tr>";
}
print"</table>";
?>
</p>
谢谢帮忙。 |
|
|
|
|
|
|
|
发表于 18-8-2006 01:52 AM
|
显示全部楼层
MySql 当然没有 browse button. MySQL 要么储存 path 要么储存 image binary. 以你的例子来说, 是储存 path, 那么在你的显示图片的时候... 应该用 php + html:
<img src='<?php echo result_row["YOUR_IMAGE_PATH"]; ?>'>
另外... 你储存 path 的方式竟然是 "c:\..." 这是不会 work 的. 只要储存子目录和文件名字就可以了. |
|
|
|
|
|
|
|
楼主 |
发表于 18-8-2006 11:08 AM
|
显示全部楼层
因为要放上网,所以my_image_path要放什么名字?而且<img src='<?php echo result_row["YOUR_IMAGE_PATH"]; ?>'>要放在哪里?谢谢。 |
|
|
|
|
|
|
|
楼主 |
发表于 28-8-2006 12:53 PM
|
显示全部楼层
upload pic 完全没有问题了。现在想问问怎样用php 和 mysql 做unique visitor counter?还有要怎样把product list limit to 20 product per page and the other product that can show in other page??因为我的product database table 有很多product.谢谢。 |
|
|
|
|
|
|
|
发表于 28-8-2006 01:27 PM
|
显示全部楼层
原帖由 wenwen05 于 28-8-2006 12:53 PM 发表
upload pic 完全没有问题了。现在想问问怎样用php 和 mysql 做unique visitor counter?还有要怎样把product list limit to 20 product per page and the other product that can show in other page??因为我的pr ...
第一题,英文不好不明。
第二题,可以用limit。
很多人问过 |
|
|
|
|
|
|
|
楼主 |
发表于 28-8-2006 02:33 PM
|
显示全部楼层
原帖由 红发 于 28-8-2006 01:27 PM 发表
第二题,可以用limit。
很多人问过
可以教多一次吗?我没用过limit。要怎样写?谢谢。unique visitor counter 的意思是可以算有多少人游栏过网站。 |
|
|
|
|
|
|
|
发表于 28-8-2006 04:06 PM
|
显示全部楼层
算有多少人游栏过网站 can use web statics program or reading in Apache Log File. or do a simple counter yourself, any page load then check for user ip, then if not in database consider add 1, else nt add.
select * from abc where product='camera' limit 5 |
|
|
|
|
|
|
|
楼主 |
发表于 29-8-2006 10:24 AM
|
显示全部楼层
虽然可以limit,但是其他的product怎么办?我要能继续link to next page and display all product after page 1 untill to last page.谢谢。 |
|
|
|
|
|
|
| |
本周最热论坛帖子
|