mysql - php submit button and form radio -


i'm trying script sends information sql, have problem submit button , form radio, can me it?

this if doesn't work properly

if (isset($_post['test'])) { if(isset( $_post['odp'])) 

this code of php http://wklej.org/id/1003412/

for one, after viewing code seems best combine 2 if's, below:

if ((isset($_post['test']) && isset( $_post['odp'])) {     code execute; } 

what values getting isset( $_post['test']) , isset( $_post['odp'])? may want try echoing them out see if actual values expecting. can try echoing right after 2 if(isset's, may part of executed code not working, , not actual if statements.

empty($_post['test']) may work better well, same poster above stated.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -