Yik Chin
Would you like to react to this message? Create an account in a few clicks or log in to continue.

表格横排显示数据库资料

向下

表格横排显示数据库资料 Empty 表格横排显示数据库资料

帖子 由 yikchin88 周六 十月 03, 2009 11:21 pm

CREATE TABLE `fnd` (
`id` int(255) NOT NULL auto_increment,
`fndName` varchar(255) collate latin1_general_ci NOT NULL default '',
`fndPrice` varchar(255) collate latin1_general_ci NOT NULL default '',
`type` varchar(255) collate latin1_general_ci NOT NULL default '',
`picture` longblob NOT NULL,
PRIMARY KEY (`id`)
)


<html>
<head>
</head>
<body>
<link href="set.css" rel="stylesheet" type="text/css">
<?php
include('connection.php');
$str = "SELECT * FROM fnd ";
$conn1=mysql_query($str);
while(list($id,$fndName,$fndPrice)= mysql_fetch_row($conn1))
{
?>
<table width="400" border="0" cellpadding="0"cellspacing="0" bordercolor="#FF0000"style="float:left;">
<tr>
<td colspan="2"><?php echo "<img id='mypic' src='editfnd2.php?id=$id'>"?> </td>
</tr>
<tr>
<td width="91">Food Name: </td>
<td width="409"><?php echo $fndName;?></td>
</tr>
<tr>
<td width="91">Food Price:</td>
<td>RM <?php echo $fndPrice;?></td>
</tr>
</table>
</tr></table>
<p>
<?php
}
?>
</p>
</body>
</html>
yikchin88
yikchin88
Admin

帖子数 : 219
积分 : 5984
注册日期 : 09-10-02
年龄 : 36

http://prettyyi.co.cc

返回页首 向下

表格横排显示数据库资料 Empty editfnd2.php 显示图片的

帖子 由 yikchin88 周六 十月 03, 2009 11:23 pm

<?
if(isset($_GET['id']))
{
$id = $_GET['id'];

include("connection.php");

$sql = "select picture from fnd where id='$id'";
$result = mysql_query($sql);

$picpic = MYSQL_RESULT($result,0,"picture");
echo $picpic;
}

?>
yikchin88
yikchin88
Admin

帖子数 : 219
积分 : 5984
注册日期 : 09-10-02
年龄 : 36

http://prettyyi.co.cc

返回页首 向下

表格横排显示数据库资料 Empty 回复: 表格横排显示数据库资料

帖子 由 yikchin88 周日 十月 04, 2009 12:10 am

css文件调图片大小:

#mypic {width:250px; height:250px;}
______________________________________________________________________

connection.php:
<?php
import_request_variables("GP","");
$connection=mysql_connect("127.0.0.1","root","")
or die("Could not connect");
mysql_select_db("yama",$connection)
or die("Could not select database");
?>
yikchin88
yikchin88
Admin

帖子数 : 219
积分 : 5984
注册日期 : 09-10-02
年龄 : 36

http://prettyyi.co.cc

返回页首 向下

返回页首


 
您在这个论坛的权限:
不能在这个论坛回复主题