Jump to content

creating a function


blue_seraph

Recommended Posts

I need to get simular data from a data base on many pages on my site
I descided to make a function so I wont need to right the same code over and over
I know the function works i just dont know how to get the data out


function getAllItems($what,$where,$ordered){
$query = "SELECT * FROM `items` where `$what`= '$where' ORDER BY '$ordered'";
$result = mysql_query($query);
$i=0;
while($row = mysql_fetch_array($result, MYSQL_ASSOC)){
$id[$i]=$row[id];
$cat[$i]=$row[category];
$pName[$i]=$row[prodname];
$smallD[$i]=$row[smalldescript];
$longD[$i]=$row[longdescript];
$pImage[$i]=$row[image];
$price[$i]=$row[price];
$i++;
}
$gAI=$i;
}
--------------------------------------------------

This is how i am retreiving the data

--------------------------------------------------
getAllItems("category","Hookah Flavors","prodname");

<?
for ($i=0;$i<=$gAI;$i++){
?>
<li><a href="flavors.php?id=<?=$id[$i]?>" target="hookahflavors"><li><?=$pName[$i]?></a></li>
<?}?>
--------------------------------------------------

The data being retrieved is product info
How do i save the arrays from the function so they can be used afterwords
I want to use this funtion to create dynamic index pages for all the categories

--------------------------------------------------
Link to comment
Share on other sites

this is a fairly basic part of functions - i would suggest reading a little more about custom functions.

what you're after is the return statement. when you return something, it is sent back as info to the scope that called it. for example:

[code]function two_plus_two()
{
  $value = 2 + 2;
  return $value;
}

$four = two_plus_two();[/code]

by returning $value in the function, calling two_plus_two() gives $value to whatever it is assigned. it is also possible to use it directly, rather than assigning it to a variable:

[code]$eight = 2 * two_plus_two();[/code]
Link to comment
Share on other sites

i know i can do
$four = two_plus_two();


but i have 7 array that the funtion creates that i need to be able to use after the funtion

$id[] and $pname[] in this case

<?
for ($i=0;$i<=$gAI;$i++){
?>
<li><a href="flavors.php?id=<?=$id[$i]?>" target="hookahflavors"><li><?=$pName[$i]?></a></li>
<?}?>

i'll have to use the rest of the arrays latter
Link to comment
Share on other sites

Guest footballkid4
Return all of the arrays in another array:
[code]<?php
function your_function()
{
     $id = array();
     $pname = array();
     //other variables
     return array( $id , $pname );
}
?>[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.