API15

JDatabase/loadResultArray: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 41: Line 41:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=loadResultArray
  category=loadResultArray
  category=JDatabase
  category=JDatabase
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 00:26, 25 March 2017

Description

Load an array of single field results into an array

[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

Syntax

loadResultArray($numinarray=0)
Parameter Name Default Value Description
$numinarray 0

Defined in

libraries/joomla/database/database.php

Importing

jimport( 'joomla.database.database' );

Source Body

function loadResultArray($numinarray = 0)
{
        return;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples