The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/showthread.php 28 require_once





× This forum is read only. As of July 23, 2019, the UserSpice forums have been closed. To receive support, please join our Discord by clicking here. Thank you!

  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
structure for statement in php for mysqli
#1
Hi, can you post here... separate script for: Insert - Upload - select- delete, each option. PHP script only.
I want to do a table, but can not understand script, models/funcs.php

Example
table:
Id,
name,
email,
phone,
and description

Here what I have, example.


<pre>
Code:
// Editare Lista produse *******************************************************************************************************************************
function fetchAllbarangg()
{
    global $mysqli,$db_table_prefix;
    $stmt = $mysqli->prepare("SELECT
        id_brg,
        nama_brg,
        harga_brg,
        desc_brg,
        jml_brg,
        gambar_brg,
        detali_ac,
        detali_atentie,
        Masuri_de_siguranta,
        Semne_si_simptome,
        Pastrare_si_utilizare,
        oferta
        FROM ".$db_table_prefix."barang
        WHERE
        id_brg = ?
        LIMIT 1");
    $stmt->execute();
    $stmt->bind_result($id_brg, $nama_brg, $harga_brg, $desc_brg, $jml_brg, $gambar_brg, $detali_ac, $detali_atentie, $Masuri_de_siguranta, $Semne_si_simptome, $Pastrare_si_utilizare, $oferta);
    
    while ($stmt->fetch()){
        $row[] = array('id_brg' => $id_brg, 'nama_brg' => $nama_brg, 'harga_brg' => $harga_brg, 'desc_brg' => $desc_brg, 'jml_brg' => $jml_brg, 'gambar_brg' => $gambar_brg, 'detali_ac' => $detali_ac, 'detali_atentie' => $detali_atentie, 'Masuri_de_siguranta' => $Masuri_de_siguranta, 'Semne_si_simptome' => $Semne_si_simptome, 'Pastrare_si_utilizare' => $Pastrare_si_utilizare, 'oferta' => $oferta);
    }
    $stmt->close();
    return ($row);
}
</pre>



Thanks.
  Reply


Messages In This Thread
structure for statement in php for mysqli - by picassoo - 08-22-2016, 10:06 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)