Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. gratemyl

    start a download

    does it have PHP?
  2. gratemyl

    changing php session variables via javascript

    you cannot alter PHP session variables via javascript, as javascript is client-side, and PHP is server-side. you could append a ?bizunit=blablabla though
  3. gratemyl

    Table of Contents processor

    well, this code is meant to sort out all titles e.g. ==heading== ===heading=== ====heading==== and i would like an eplanation, and maybe some help as to where the ='s are being searched for
  4. gratemyl

    parse error. quick question

    is it a php parse error or javascript or html? if it is not php - as i don't see any error, i recommend posting it in a different forum, so people can help you
  5. gratemyl

    Adding a EULA to existing registration page.

    if you post source code to all related pages, i could work it out for you. if you do not wish to post publicly, i can give you my email address upon request
  6. gratemyl

    Identifying apache uniquely?

    when the script is first run, create a random number using something like microtime() or rand() and store it in a file. this number will be unique in almost all cases (like 99.999%) that way you can uniquely identify the server
  7. gratemyl

    Adding a EULA to existing registration page.

    you are correct, it is a completely different function altogether!
  8. gratemyl

    Table of Contents processor

    I am working on a site management system (like a CMS, but better ;-)), and i am including a tag {{toc}} for automatic creation of a table of contents. i took this code from WackoWiki, and i would like to alter it to be callable from my main script: <?php //toc.php $page = ""; $ppage=""...
  9. gratemyl

    DIV vs Goold ol' Tables??

    I might suggest the use of the Smarty library (http://smarty.php.net/) to ensure web designer and programmer tasks are kept seperate. That way, things are easier for both parties, and code changes in HTML or code changes in PHP do not affect anyone else, and do not require reprogramming of the...

Part and Inventory Search

Back
Top