action.php
<?php
include_once "connection.php";
$con=db_connection_open();
$b_id=$_GET ['b_id'];
$sql="select * from bookmaster where b_id=$_GET ['b_id']";
$rs=mysql_query($sql);
$row=mysql_fetch_array($rs);
$publisher_name=$row['publiser'];
$b_pic=$row['bookpic'];
$b_cost=$row['bookcost'];
$book_synopis=$row['booksynopsis'];
echo '<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td valign="top" width="25%"><b>publisher Name:</b></td>
<td valign="top">$publisher_name</td>
<td align="right" valgn="top" rowspan="2">"ssss"</td>
</tr>
<tr>
<td> valign="top" width="45%"><b>book cost:</b> </td>
<td valign="top">$b_cost</td>
</tr>
<tr>
<td colspan="3" valign="top" width="45%"><b> book Synopsis:</b><br>$book_synopsis.</td>
</tr>
</table>';
?>
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment