Forum: Perl Apr 3rd, 2009 |
| Replies: 3 Views: 566 Thank you for all of the help. |
Forum: Perl Apr 2nd, 2009 |
| Replies: 3 Views: 566 Hello All,
I am working on a simple program that will counts the number of matches found. I then need to display the text of the last successful pattern and the text the preceeds the last... |
Forum: Perl Mar 9th, 2008 |
| Replies: 3 Views: 970 There is another version of putty. Thanks for the comment but I figured it out.
Thanks |
Forum: Perl Mar 8th, 2008 |
| Replies: 3 Views: 970 Hello All,
I am trying to use an image as a background. I am working with perl through putty .58 and am wondering how to get an image into a specific location in putty that can be used in a perl... |
Forum: Perl Mar 7th, 2008 |
| Replies: 3 Views: 1,906 Hello All,
I am trying to figure out how to write user input into a text file.
I created a text box that the user can type his/her name into. I am trying to get the information from that text... |
Forum: Perl Feb 20th, 2008 |
| Replies: 5 Views: 1,453 Well, I thought so initially so I removed the array of radio buttons and listed them individually 1 - 10 and everything worked fine. When I went back to the array it simply would not display which... |
Forum: Perl Feb 20th, 2008 |
| Replies: 5 Views: 1,453 Thanks KevinADC, I tried that initially and it did not print out the selected radio button's information. |
Forum: Perl Feb 19th, 2008 |
| Replies: 5 Views: 1,453 Hello All,
I used a for loop to create a set of radio buttons.
For example:
for($i = 1; $i < 4; $i++)
{
print '<INPUT TYPE="radio" NAME="first" VALUE=$i >', " $i|";
} |