Search : in
By :

Can data be copied into a comment box?

Last answer on Oct 7, 2009 7:34:20 pm BST craigo, on Apr 4, 2009 1:11:43 pm BST 
 Report this message to moderators

Hello,
Is it possible for data to be copied into a comment box?

Configuration: Windows Vista
Internet Explorer 7.0

Best answers for « can data be copied into a comment box? » in :
[Ingres] Importing/ Exporting data Show[Ingres] Importing/ Exporting data Making use of these commands copydb unloaddb Notes Ingres allows you to export data from an Ingres installation to another (it is a platform independent procedure). unloaddb copydb The main...
How to split data into multiple worksheets? ShowHow to split data into multiple worksheets? Issue Solution Note Issue I hope someone can help! I have a .csv file open with excel that contains a large amount of data that has been merged together so that each data set follows each...
[Linux]Cutting a file into several parts Show[Linux]Cutting a file into several parts Linux is full of utility tools allowing you to manipulate files. There is a very handy tool to split a file into several parts (for example to carry data on low capacity media). The split...
Download Free commander ShowFree Commander is an alternative program to replace the file manager or the Windows explorer. The program is easy to use and will help you for your daily tasks. You will find all the necessary functions for the data management. The main...
Data transmission - Cabling ShowCabling types Several physical data-transmission media are available to connect together the various devices on a network. One possibility is to use cables. There are many types of cables, but the most common are: Coaxial cable Double twisted...
Introduction to power line communications (PLC) ShowIntroduction to PLC "Power Line Communications" basically means any technology that enables data transfer at narrow or broad band speeds through power lines by using advanced modulation technology. Depending on the country, the institution and the...
Using FTP commands ShowThe FTP protocol FTP (File Transfer Protocol) is a protocol — meaning a standard language that lets two machines communicate — used so that computers of different types (or with different operating systems) can transfer files over a...

1

wifipen, on Apr 5, 2009 2:00:44 pm BST

No it is not possible

Reply to wifipen

2

 jackrowe, on Oct 7, 2009 7:34:20 pm BST

You can populate the comment box w/ data by putting the data into a $variableWithData, then using that variable as the value="" attribute of the comment box (which is typically just an html form).

The value attribute would look like this:

value="<?php echo $variableWithData; ?>"

and just fits into the textarea tag as per usual. The pages have to be able to parse php. Users will be able to replace the data in the comment box with their own text. This technique is also useful for filling in form fields that users have already completed when returning them to a form for corrections.

Reply to jackrowe