Daniel_Johns Posted September 30, 2004 Share Posted September 30, 2004 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. Quote Link to comment https://forums.phpfreaks.com/topic/1977-recordset-image-text-problem/ Share on other sites More sharing options...
morpheus.100 Posted September 30, 2004 Share Posted September 30, 2004 Post some code and lets see whats going on. Quote Link to comment https://forums.phpfreaks.com/topic/1977-recordset-image-text-problem/#findComment-6478 Share on other sites More sharing options...
Daniel_Johns Posted October 5, 2004 Author Share Posted October 5, 2004 <?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> Quote Link to comment https://forums.phpfreaks.com/topic/1977-recordset-image-text-problem/#findComment-6496 Share on other sites More sharing options...
Daniel_Johns Posted October 5, 2004 Author Share Posted October 5, 2004 sorry for the delay, busy on work. btw, this is the code im testing. thnx for the help. Quote Link to comment https://forums.phpfreaks.com/topic/1977-recordset-image-text-problem/#findComment-6497 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.