Slashdot Mirror


User: justMichael

justMichael's activity in the archive.

Stories
0
Comments
427
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 427

  1. Re:Who has a monkey job? on Helping Computers Help Themselves · · Score: 1

    How much of it could be automised?

    Don King, is that you? Did you mean atomize?

    Main Entry: atomize
    Pronunciation: 'a-t&-"mIz
    Function: transitive verb
    Inflected Form(s): -ized; -izing
    Date: 1845
    1 : to treat as made up of many discrete units
    2 : to reduce to minute particles or to a fine spray
    3 : DIVIDE, FRAGMENT
    4 : to subject to attack by nuclear weapons

    Sorry I couldn't resist.

  2. Re:register_globals on Programming PHP · · Score: 1
    You are half correct...
    Please note that register_globals cannot be set at runtime (ini_set()). Although, you can use .htaccess if your host allows it as described above. An example .htaccess entry: php_flag register_globals on.
    Taken from the manual

    Another workaround is this:

    if (ini_get('register_globals') != 1) {
    extract($_ENV, EXTR_SKIP);
    extract($_REQUEST, EXTR_SKIP);
    extract($_SERVER, EXTR_SKIP);
    }