Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. shadiadi

    update not working?

    solved it with this $file1 = $row["data2"]; $file1 = mysql_real_escape_string($file1); $file2 = $row["thumbnail2"]; $file2 = mysql_real_escape_string($file2); $sql02 = "update zloads set description1 = '$description2', data1 = '$file1', filename1 = '$filename2', filesize1 = '$filesize2'...
  2. shadiadi

    update not working?

    mmm i just tried $file1 = file_get_contents($data2, "r"); $file2 = file_get_contents($thumbnail2, "r"); $sql02 = "update zloads set description1 = '$description2', data1 = '".mysql_real_escape_string($file1)."', filename1 = '$filename2', filesize1 = '$filesize2', filetype1 = '$filetype2'...
  3. shadiadi

    update not working?

    Hi some help here would be appreciated my update isn't working everything in this statement updates except $file1 $file2 which are blob fields. After the update they just stay as [BLOB 0]?? $file1 = (fread(fopen($data2,0,"data2"))); $file2 = (fread(fopen($thumbnail2,0,"thumbnail2"))); $sql02...
  4. shadiadi

    php sql select problem

    Hi I have the following php form the second selection item has to relate to the first selection item but i am totally lost here here is the code i have at the moment it is displaying items in the second selection but they are not related to the first item selected. <td class="right"> <? $sql...

Part and Inventory Search

Back
Top