Jump to content

Retrieve form data for class object


Techron

Recommended Posts

You can just return them like normal, can't you?

 

try this:

 

test-class.php:

<?php

class Test
{
function printVars() {
	foreach ($_GET as $key => $val) {
		print 'GET: [' . $key . '] ' . $val . '<br />';
	}
	foreach ($_POST as $key => $val) {
		print 'POST: [' . $key . '] ' . $val . '<br />';
	}
}
}

?>

 

 

test.php?some=vars&to=print:

<?php

include 'test-class.php';

$test = new Test();
$test->printVars();

?>

That code will produce errors. If there are no post values and only url params you will get a foreach error on the foreach($_POST) as not array will exist. Same other way around.

 

As Thorpe said if your form uses a POST method the values will be contained in the $_POST array and in the $_GET array if using the GET method.

To display the array after form submission use print_r();

 

// display submitted input
// using POST method
print_r($_POST);

 

You can then access the data as you would a normal array.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.