hi,
i am currently creating one page processing the username and password , and prints the value given in that textboxes.
it is a single php script contains both the design and server script.
That is form action and actual page is same..
for example the below script is saved as login.php
in Asp i use to get the content length is request.TotalBy tes
in JSP i use to get the content length is request.getCont entLength
How do we get it in PHP?
Thanks in Advance..
i am currently creating one page processing the username and password , and prints the value given in that textboxes.
it is a single php script contains both the design and server script.
That is form action and actual page is same..
for example the below script is saved as login.php
Code:
<form method="post" action="login.php"> : : : : </form> <?php $s=$_POST['user']; $p=$_POST['pass'];
in JSP i use to get the content length is request.getCont entLength
How do we get it in PHP?
Thanks in Advance..
Comment