Jump to content

kuvini2003

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

kuvini2003's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. hi, Can u please guide me with how to add property header to php file?.. -thanks
  2. thank you for the reply. <?php $con = mysql_connect("localhost","kuvini","kuvini"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("kuvini", $con);$result = mysql_query("SELECT * FROM info"); echo "<font size=2><table border='1'> <tr> <th>Name</th> <th>Image</th> </tr>"; while($row = mysql_fetch_array($result)) { echo "<tr>"; echo "<td>" . $row['Name'] . "</td>"; echo "<td>" . $row['image'] . "</td>"; echo "</tr>"; } echo "</table>"; I am getting binary value in that place . What should i do?. thanks.
  3. hello friends, please help me 1) i am having a database in mysql with following fields(id ,name,desc,image blob). I already inserted records in the table.I want to display all the fields in the php page. i want to display all the fields in a table format and also i have another situation 2) I am storing 10 images in the folder( c:\xampp\htdocs\Mywebsite\images) I want to store the paths of the 10 images in a file named imagefile.txt I have to dispay the images in the PHP script as hyperlink. Please help me. thanks, avinash
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.