Hi there guys...
Now i am facing a problem, it is related to text area box.
The problem is once i tab in from other field, the cursor is placed at the center of the text area. Altough it is not a big deal when we wanted to insert a data, but it seems to create problems when we wanted to edit the data.From my understanding, if we fill in the text area box with data, the data will remain as it is except that when we change or update it.In my case it is not like that, the formatting of data seems to change.When i wanted to insert new data, the new data is also affected.It is like spaces are being added but not being added by me or my frens.I feel like the spaces are creating the problems but not sure.
this is how i do my text area code
<tr>
<td valign=middle align=right rowspan=1>Customer Description & Needs:</td>
<td><textarea rows=4 cols=40
name=description>
<?php echo $edit?$customer['description']:''; ?>
</textarea></td>
</tr>
Why is it happening....How to solve this?
Another problem is..since i am using session in my code, the session expires vwry quick.User's cannot click back when they want to review back or go back to their previous page.
Why is that happening...How can i solve this.
Thanks