Jump to content

Daniel_Johns

New Members
  • Posts

    3
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Daniel_Johns's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. sorry for the delay, busy on work. btw, this is the code im testing. thnx for the help.
  2. <?php { @MYSQL_CONNECT("localhost","tester","test"); @mysql_select_db("sample"); $query = "select Photo, Lastname, Firstname from contacts where Id=5"; $result = @MYSQL_QUERY($query); $data = @MYSQL_RESULT($result,0,"Photo"); $LName = @MYSQL_RESULT($result,0,"Lastname"); $FName = @MYSQL_RESULT($result,0,"Firstname"); echo $data; echo $LName; echo $FName; } ?> <html> <body> <p> <img src="getdata.php"> </body> </html>
  3. Hi all! Im using Dreamweaver 204 MX with MySQL 4.01 and PHP 5 installed and working properly. I have come to try PHP using DW. I created a simple-sample site which would only fetch data out of MySQL db. DB name is Sample. Table name is Contacts. Fields are IDNo, LastName, FirstName, Address and Photo (a mediumblob type) I tried showing the following records in DW style (drag-drop-fields-from-recordset) then it only shows the text fields (IDNo, LastName, FirstName and Address) but not the Photo column (in which DW doesnt support this feature it says...) I override DW code and the photo shows...the real problem is the text wont show when I load the photo first and when the text is shown first, the photo wont load. Any solution with this simple problem (i think its simple for those who are guru...) thanks in advance and it will be a great help for a begginner like me. Thanks again.
×
×
  • 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.