Forum Moderators: coopster
first big aplause to this forum.. great!
second I am just knew into php I have read some stuff into it. basics what I do, I search on the internet for I nice phpscript and I configure and implement it on my website. But I rather get disorientated in the whole global register thing. I want to have scripts work with "off" but I cannot manage it.
Is it ok if I post the script I got into here and have somebody help me converting it to work with global register "off"?
Thnx in advance!
If it's GET variables(eg. script.php?var=something), then do this:
<?php
extract($_GET);
...
If it's POST variables(eg. a form), then do this:
<?php
extract($_POST);
...
By doing this, your script should work fine.
Welcome to Webmaster World!
Birdman
that actually worked..
does it also work when configuring other global vars?
thnx again!