Hi i have a problem with $_POST Method.
this is my code :
<form method="post" action="index.php">
<input type="text"name="tb"/>
<input type="submit" value="Send"/>
</form>
<?php
echo $_POST['tb'];
?>
and this is error message:
Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'always_populate_raw_post_data' to '-1' in php.ini and use the php://input stream instead. in Unknown on line 0 Warning: Cannot modify header information - headers already sent in Unknown on line 0
i used PhpStorm Editor And php-7.0.3-nts-Win32-VC14-x86. i try to change my php.ini but it's not work.