Hi. Im currently doing a project on magazine editor and I'm suppose to let the user edit the pages of some online magazine.
There will be a treeview which has parent nodes named, 'Page1, Page2' & so on and the child nodes will be, 'Video, Images, Podcast' depending on what the user choose. And the user will be able to upload the whatever he or she selected for example 'video/images/podcast' to the page. I understand that there...
Search Result
Collapse
4 results in 0.0013 seconds.
Keywords
Members
Tags
-
Storing data of treeview using arraylist
-
Locating an object
Hi everybody,
I would like to find out the location in the array where I have store an object.
I have the following code as example:
...Code:<?php class test{ public static $object_store = array(); public function start_object($class_name){ self::$object_store[$class_name] = new $class_name; return self::$object_store[$class_name]; -
Storing and count mlm binary tree
How do i store the date and tree root node and child nodes in database.
How many tables to be created.
It should be fast in counting the nodes even if there are more than 25000 child nodes in left or right. -
store procedure call
Hi:
I´m calling a store procedure inside another store procedure and I have two problems
create sp1(in variable int)
begin
call sp2(variable)
call sp3(variable)
call sp4(variable)
end
the first thing is :
If I call each sp alone it works fine but if I call the sp1 it does´t work and no error messages are reported.
The second...