Hey guys -
I"m working with a lot of php/mysql databases here, and in order to update account information here's the code we use ...
now...my job is to redesign this site, etc, and to make it where we don't need the forms to send information from page to page.
How do you do that? I really don't know that much about php to know how to do it.
Thanks much in advance.
I"m working with a lot of php/mysql databases here, and in order to update account information here's the code we use ...
Code:
printf ("\n<form method=\"post\" action=\"mailadd.php\">\n");
printf ("<input type=\"hidden\" name=\"geo_type\" value=\"rectangle\">\n");
if ($usecookies == 0) {
printf ("<input type=\"hidden\" name=\"userid\" value=\"%d\">\n", $userid);
printf ("<input type=\"hidden\" name=\"passwd\" value=\"%s\">\n", $passwd);
}
# echo '<input type="Submit" name="submit" value="Enter a rectangle mail rule">';
echo '<input TYPE="image" src="button-rectangle.jpg"></form><br>';
echo "</form>\n";
now...my job is to redesign this site, etc, and to make it where we don't need the forms to send information from page to page.
How do you do that? I really don't know that much about php to know how to do it.
Thanks much in advance.