In this post we will be disabling the resizable property of a text area in HTML via CSS. The removal of this can be useful for example when wanting a text area to better suit the theme of the webpage or it could be the resizable element causes issues to your layout and other elements.Continue reading “HTML & CSS – Disable resizable property of a textarea”
Category Archives: HTML
PHP Redirects – Redirect page using PHP
In this post we will be using PHP to redirect to another webpage, in this particular example our webpage will contain a button that will utilize the HTTP POST method. Our PHP script will then make the redirect once the button has been pressed. We begin by creating our webpage with a button in HTMLContinue reading “PHP Redirects – Redirect page using PHP”
HTTP POST – Send HTML data to PHP script
In this post we will be using the POST method to send data from client to server. This is achieved via the use of HTTP (hypertext transfer protocol) which acts as a request-response protocol, for the purpose of this example our client will be an input form in HTML and our server will be aContinue reading “HTTP POST – Send HTML data to PHP script”