Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

fpdf त्रुटि और तालिका त्रुटि देखें

सबसे पहले, आपको अपने सभी <tr> . को बंद कर देना चाहिए और <td> टैग। दूसरा, आप अपने फ़ॉर्म के साथ कोई फ़ाइल नहीं भेज रहे हैं, और इसलिए आपको यह Undefined index: file मिल रही है त्रुटि, इसलिए इन पंक्तियों को हटा दें,

$file_filename=$_FILES['file']['name'];
$target_path  =  "Newfolder1";
$image_path = $target_path . DIRECTORY_SEPARATOR . "filename";
$image_format = strtolower(pathinfo('filename', PATHINFO_EXTENSION));

तो उपयोगकर्ता हिट करने के बाद view बटन, आपको अपना फॉर्म संसाधित करना चाहिए और इस तरह छवि प्रदर्शित करनी चाहिए,

// your code

if (isset($_POST['View']) ){
    $pdf=new fpdf();
    $pdf->ADDPage();
    $pdf->setfont('Arial','B', 16);  
    $pdf->Cell(40,10, 'sname',1,0,'c');
    $pdf->Cell(40,10, 'sadd',1,0,'c');
    $pdf->Cell(40,10, 'category',1,0,'c');
    $pdf->Cell(40,10, 'scode',1,0,'c');


    $con = mysqli_connect("localhost","root","","school");
    if (mysqli_connect_errno()){
        echo "Failed to connect to MySQL: " . mysqli_connect_error();
    }

    $sql="SELECT * FROM imagetable WHERE ID= '$_POST[search]'";
    $result = mysqli_query($con, $sql);
    if(!mysqli_query($con, $sql)){
        die( "Could not execute sql: $sql"); 
    }

    $row = mysqli_fetch_array($result);
    $image_path = $row['file'] . DIRECTORY_SEPARATOR . $row['filename'];  // path should be like this, process/upload/8/cdv_photo_001.jpg
    $image_format = strtolower(pathinfo($image_path, PATHINFO_EXTENSION));
    $pdf->Cell(40,10, $row['sname'],1,0,'c');
    $pdf->Cell(40,10, $row['sadd'],1,0,'c');
    $pdf->Cell(40,10, $row['category'],1,0,'c');
    $pdf->Image($image_path,50,100,50,20,$image_format);
    $pdf->ln();
    $pdf->output();
}

// your code



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. न्यूनतम गिनती वाली पंक्तियों का चयन करें (*)

  2. डॉकटर कंटेनर रन के लिए कम से कम 1 तर्क की आवश्यकता होती है

  3. मैं MySQL में उपयोगकर्ता परिभाषित फ़ंक्शन कैसे लिख सकता हूं ताकि जब मैं एक तालिका से एक पंक्ति हटा दूं, तो दूसरी तालिका से वह विशेष पंक्ति भी हटा दी जाए?

  4. NVD3.js में उपयोग के लिए MYSQL PDO से कस्टम स्वरूपित JSON

  5. अमेज़ॅन एथेना पर एसक्यूएल की क्वेरी (खोज) कैसे करें जिसमें JSON मान है?