Quote:
Originally Posted by k0nr4d
print_r() the $_POST and $_FILES arrays to make sure that the data is actually arriving at the server.
If you are talking about htpasswd, that's doesn't count as a login system in the context of php sessions. That's separate.
|
Thank you.
Before I start screwing around with things and mess them up even more, can I confirm that you mean I should put print_r() like this at the top of the page where the arrays are and not somewhere else?
Quote:
<?php
$Color = print_r($_POST)["Color"];
$Title = print_r($_POST)["Title"];
$TitleSize = print_r($_POST)["TitleSize"];
?>
|