Page 2 of 4

Posted: Wed Mar 03, 2004 8:25 am
by twigletmac
4.0.6 and sessions can be a pain plus there have been a lot of changes to PHP between 4.0.6 and 4.3 and you're missing out on enhanced functionality.

Mac

Posted: Wed Mar 03, 2004 8:25 am
by Wee-Man
i can only download 4.3.4 from php.net shall i get that?

Posted: Wed Mar 03, 2004 8:25 am
by JayBird
yup, that'll be fine

Posted: Wed Mar 03, 2004 8:27 am
by Wee-Man
and shall i egt the installer? not the .zip

Posted: Wed Mar 03, 2004 8:28 am
by JayBird
i would, lot easier.

Posted: Wed Mar 03, 2004 8:29 am
by Wee-Man
ok its only 1meg, should be much longer *curses dial up*

Posted: Wed Mar 03, 2004 8:30 am
by Wee-Man
ok installed, im just going to reboot, brb

Posted: Wed Mar 03, 2004 8:31 am
by markl999
reboot? .... :o

Posted: Wed Mar 03, 2004 8:31 am
by malcolmboston
roflmao, nice commentary :lol:

Posted: Wed Mar 03, 2004 8:43 am
by Wee-Man
it told me to reboot so i done it :D

Posted: Wed Mar 03, 2004 8:44 am
by Wee-Man
Right..... now what? do i have to start over? my whole script?

Posted: Wed Mar 03, 2004 8:47 am
by JayBird
no, just update your current.

All variable that are submitted from the form have to be called by doing

Code: Select all

$_GET['variable_name'];
or

Code: Select all

$_POST['variable_name'];
depending on your form method.

As a cheat, you could put

Code: Select all

extract($_GET);
or

Code: Select all

extract($_POST);
at the top of you script, but not the best solutions

Mark

Posted: Wed Mar 03, 2004 9:27 am
by Wee-Man
Ok :S say that again a bit more descriptive to what i have to do, you lost me.

Posted: Wed Mar 03, 2004 9:35 am
by JayBird
show me the code for your login form

Mark

Posted: Wed Mar 03, 2004 9:38 am
by Wee-Man
it is on page one the code, but no logging in is done, so ignore the login just adding names to the database is all its neded for.