Hello, the next code is in the reg_index.php and ind_index.php.
when Im clicking to insert data, its returns empty in db. even doesnt show on the page after clicking submit.Please is there any error?All the rest of code is work only this cant understand the problem.
The code is.
</form>
/////////////////////////////// end of reg_insert.php
-----------------------------------------------------------------------------
the ind_insert.php
<?php
include'db.php'; //connection to DB
}
/////// RETURNS EMPTY AFTER CLICKING ENVIAR //////////
?>
////////////// end of ind_insert.php
thank you very very much
__________________
Arsen Khachatryan
---------------------------------
Do you think making money is hard?If so,You haven't clicked yet!!! http://www.khaarsen.com/Paid_to_click.php
Your <form tag is missing a method="post" parameter, so it is using the GET mode by default and the $_POST variables are not being set.
__________________
If you are learning PHP, developing PHP code, or debugging PHP code, do yourself a favor and check your web server log for errors and/or turn on full PHP error reporting in php.ini or in a .htaccess file to get PHP to help you.