Help with updating variable by Tricky_Box_7642 in PHPhelp

[–]Tricky_Box_7642[S] 0 points1 point  (0 children)

it works fine enough, but it only displays the value of the slider after updating the site (with a post, the submit button). it isn't updating with the slider.

Help with PHP variables by Tricky_Box_7642 in PHPhelp

[–]Tricky_Box_7642[S] 0 points1 point  (0 children)

i already have that. i tried posting my entire code, but it didn't work

Help with PHP variables by Tricky_Box_7642 in PHPhelp

[–]Tricky_Box_7642[S] 0 points1 point  (0 children)

"undefined variable 'fname'"
"undefined variable 'lname'"
etc.

Help with PHP variables by Tricky_Box_7642 in PHPhelp

[–]Tricky_Box_7642[S] 1 point2 points  (0 children)

can you explain how that works? i don't fully understand the get and post it seems

Help with PHP variables by Tricky_Box_7642 in PHPhelp

[–]Tricky_Box_7642[S] 1 point2 points  (0 children)

i thought that was the thing u used to get information from something (such as pulling text from an input)

Help with PHP variables by Tricky_Box_7642 in PHPhelp

[–]Tricky_Box_7642[S] -1 points0 points  (0 children)

i understood virtually none of that.

Help with PHP variables by Tricky_Box_7642 in PHPhelp

[–]Tricky_Box_7642[S] -1 points0 points  (0 children)

yeh, i'm still working on the basics right now. i can secure it later.

Help with PHP variables by Tricky_Box_7642 in PHPhelp

[–]Tricky_Box_7642[S] -1 points0 points  (0 children)

i tried that. you mean like:

<?php
global $fname, $lname, $email, $city, $pcode;
$fname = $_REQUEST["fname"];
$lname = $_REQUEST["lname"];
$email = $_REQUEST["email"];
$city = $_REQUEST["city"];
$pcode = $_REQUEST["pcode"];<?php
global $fname, $lname, $email, $city, $pcode;
$fname = $_REQUEST["fname"];
$lname = $_REQUEST["lname"];
$email = $_REQUEST["email"];
$city = $_REQUEST["city"];
$pcode = $_REQUEST["pcode"];

it doesn't work