function loadItems()
{
if(document.getElementById("itemBox").style.display == "block")
{
document.getElementById("itemBox").style.display = "none";
}
else
{
document.getElementById("itemBox").style.display = "block";
//i should call something here and am lost as to what to call to get the items from lets say loaditems.php
}
return false;
}
then i imagine i need to call my php file that is loading my items from the db or something i am a little confused any help would be appreciated
Edited by xmlhelpneeded, 09 January 2009 - 07:30 PM.
