Printing value of text field in title probem

hey folks,
i am having a issue as u may know title in html is used as a title for the text that is in the text field. however if the text is consuming all the text field, it doesn’t show up the title bar coz title only show whats the value of it when hover in text field at a blank space. so now i got a problem. i m printing the php value of the text field in title bar. so as the text in field in occupying all the space i don’t have any white space left to hover over to see what’s the whole text field data is. anyway around it?
thanks

I dont understand what the problem is

title in an input statement will appear regardles of whether there is text in the input box or not.


<form action="form_action.asp">
 
First name: <input type="text" name="FirstName" value="Mickey" title="abcdefghijklmnopqrstuvwxwzabcdefghijklmnopqrstuvwxwz" />
<input type="submit" value="Submit" />
</form>