Results 1 to 2 of 2

Thread: Script to upload image to MySQL
      
   

  1. #1
    Rob (SA)'s Avatar
    Rob (SA) is offline Lieutenant Colonel
    Join Date
    Nov 2006
    Location
    Centurion, South Africa
    Posts
    580

    Default Script to upload image to MySQL

    Hi Folks,

    I have a page that uploads data to MySQL.

    I would like to know if someone could help me with a script to upload an imgage to the same MySQL data base ?

  2. #2
    Rob (SA)'s Avatar
    Rob (SA) is offline Lieutenant Colonel
    Join Date
    Nov 2006
    Location
    Centurion, South Africa
    Posts
    580

    Question Re: Script to upload image to MySQL

    Ok Folks,

    I have managed to get this far

    PHP Code:
    <?php
    $q
    =$_GET["q"];
    $con mysql_connect("localhost""****""*");
    if (!
    $con)
      {
    die (
    "Hey loser, check your server connection.");
    }
    mysql_select_db("e****_Members",$con);
    $sql="SELECT * FROM _Form_Nr_6 WHERE Record_Nr = '".$q."'"
    $result mysql_query($sql);
    echo 
    "<table border='5' cellpadding='3' cellspacing='2' bordercolor='#D6D6D8' font style='font-size:11px' color='#2611A2' face='Calibri'>
    <tr>
    <th bgcolor='#D3E2FE'>PICTURE</th>
    </tr>"
    ;
    while(
    $row mysql_fetch_array($result))
      {
      echo 
    "<tr>";
      echo 
    "<td>".($row['image'])."</td>";
       echo 
    "</tr>";
     }
    echo 
    "</table>";
    mysql_close($con);
    ?>
    I have managed to insert a field in MySQL called "image"

    However the picture doesnt load as can be seen here

    I would appreciate it if anyone can advise further ?

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49