forms - Can't access post in php -


here's code in short way. code can't access post , don't know why.

if ($_post) { echo 'post girdim'; } ?> <html>    <head>     </head> <body>     <form action="" method="post">         <input type="submit">     </form> </body> 

set input name like:

<input name="submit" type="submit" /> 

Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -