Help for this page

Select Code to Download


  1. or download this
    # The values are _copied_ here 
    $csr->bind_param(":serial_number", $Sno); 
    ...
    $csr->bind_param(":max_size", $maxs); 
    $csr->bind_param_inout(":warranty_tbl", \$warra, -10); 
    $csr->bind_param_inout(":return_status", \$return, 100);
    
  2. or download this
    # The values are _copied_ here 
    $csr->bind_param("serial_number", $Sno); 
    ...
    $csr->bind_param("max_size", $maxs); 
    $csr->bind_param_inout("warranty_tbl", \$warra, -10); 
    $csr->bind_param_inout("return_status", \$return, 100);