Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. samesale

    CGI and Text Alignment

    Thanks, it worked. I really appreciate your help.
  2. samesale

    CGI and Text Alignment

    Even I changed the "right" to include \\, it still does not work. There must be something in the statement that does not align the statement. Please help. Thanks.
  3. samesale

    CGI and Text Alignment

    I am not sure I understand the difference in your "right" and my "right". Please explain. Thanks.
  4. samesale

    CGI and Text Alignment

    I am trying to align the two texts. However, the top text shows up on the left and bottom on the right. What is wrong? Please help. The rest of the program works. print qq(<table bgcolor=seashell> <tr><td><b> PLEASE FILL OUT ALL THE INFORMATION IN THE FORM. IF YOU LEAVE OUT ANY SPACE, THE...
  5. samesale

    CGI and Mail

    I have written the following program to send e-mail to those who fill out a form. However, it does not send the subject and the e-mail address with the message. The same statements work in other programs. Please help. $mailprog ='/usr/lib/sendmail'; $recipient ="sales\@test.com"; $subject =...
  6. samesale

    CGI and Sort

    I do not get any error. It just stop after reading the first record and prints it. Even that record in not sorted.
  7. samesale

    CGI and Sort

    I have this program that supposed to sort data. However, it stops at the first record. open(INF,"<apart.out") or dienice("Couldn't open apart.out for reading: $! \n"); @data = <INF>; close(INF); foreach $i (sort bycity @data) { chomp($i)...
  8. samesale

    Picture and alignment

    I have the following section of a program in which I would like to align the text next to the picture. However, the text is placed at the end of the picture. Please help. Thanks. <tr><td colspan=8> <img src="images/car.jpg" width="200" height="100"> <font color="red" size="2"><br><b> CITIES...
  9. samesale

    Form and JavaScript

    Thanks for the suggestion. I did add > and it worked. However, when add the red code, it does not work. But when I removed the red code, it still does not work. Here is the new code: <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin FormName = "form" //Name of the form CheckName = "check"...
  10. samesale

    Form and JavaScript

    I found this code on the Internet. I modified it by adding a new line to the form. However, it does not perform check on the birth date. I know that the W variable is undefined but it must be picking a value for W somewhere in the program. Since, I am new to JavaScript, I need help as how to...
  11. samesale

    HTML and IF statement

    Is it possible to test an input value in HTML before allowing a user to submit the data? In my HTML program, I have a form to fill out. However, I want to make sure that some of the valuss are filled in before submitting the form. So to ensure that, I want to test the value within the HTML (e.g...
  12. samesale

    CGI program and error

    I added both statements. Now, it gives me the following: Name "main::count" used only once: possible typo at lawnsearch2.cgi line 25. Name "main::p1" used only once: possible typo at lawnsearch2.cgi line 16. Name "main::zipcode" used only once: possible typo at lawnsearch2.cgi line 25. Name...
  13. samesale

    CGI program and error

    I have written the following program that I access through another program. However, it give me the following error. The server encountered an internal error or misconfiguration and was unable to complete your request. #!/usr/bin/perl print "Content-type:text/html\n\n"; use CGI; $query = new...
  14. samesale

    CGI and Searching

    I have written the following statements to search for an item that matches spicification. The program works, but if the name of item consists of large letters it will not match. Is there a way to search the name regardless of the letter. In other words, make the search case insensitive. Thanks...
  15. samesale

    HTML and alignment

    Thank you to all of you for your help. I now have a good idea how to create alignment. Thanks.
  16. samesale

    HTML and alignment

    I have the following HTML statements that show pictures and text title. I would like the text to be in the middle of the bar instead of at the bottom. Is it possible? Thanks for your help. <table bgcolor="red" border="0" cellpadding="1" width="100%"> <tr><td > <img src="images/apart1.jpeg"...
  17. samesale

    HTML and Table

    It worked. I appreciate your help. Thanks.
  18. samesale

    CGI and Data Transfer

    I got the solution. It works. Thanks to all who helped. I appreciate everyone's time and help.
  19. samesale

    HTML and Table

    I have written the following program to show a text, a photo, and a table. However, table does not line up and spaces are not long enough to show the text in each column. Please help. <table width="100%" > <tr><td><font size=3><br><b>THIS SITE IS .<br> </td></tr> <tr><td> <img...
  20. samesale

    CGI and variable type

    Thanks, I should have taught of the difference between = and eq. It worked.

Part and Inventory Search

Back
Top