Jump to content

ForumJoiner

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

ForumJoiner's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. How about this one? http://xref.moodle.org/nav.html?_classes/index.html
  2. If you want to understand how to paginate, please reply and I'll provide a link. If you just want to use the above code, insert this: <?php pagination ($num_of_items, $items_per_page, $id, $page_num, $max_links); ?> in the places where you want the page numbers to be displayed. Usually, you can display pagination on the top and/or the bottom of every page of your site. Try to avoid using <? instead of <?php, because some servers don't have enabled the option to use the simplified notation.
  3. There are some scripts to reset WordPress' administrator password, when you can't get your confirmation eMail. However, you can reset the password, using your brain instead using third-party scripts. Read more.
  4. When you ask the mydomain.com server for the page http://mydomain.com/header.php, you'll receive the processed version of header.php, not the source page. Example: if header.php is: <?php echo 'Test'; ?> , you'll receive Test instead of the code above. Had what you ask be possible, all our PHP sites would have been down by now It would have been one of the major security risk, to be able to require/include remote files.
  5. I'm looking for a program or, better, for PHP scripts that can display a dependecy tree for my project. More specific, I have a php script (called script1.php) that includes another 2 php scripts (called script21.php and script22.php), each of them including some files (called script21a.php, script21b.php, and script22a.php). I need a software to make a tree like: [code]script1.php         - script21.php                 - script21a.php                 - script21b.php         - script22.php                 - script22a.php [/code] I would also like to see on this tree all the functions each file have. I need too a list like: [code]function name = fnc1 (from script1.php) called         function name = fnc2 (from script2.php) (with parameters: pr1, pr2) [/code] A name / pointer to resource would be perfect. Thank you.
×
×
  • 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.