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. survivorjoe

    Can't access Remote Desktop from the Start Menu

    Got it. Thanks. Amazing all the stuff one can still learn about XP, all these years later. I still don't know why or how the remote desktop program disappeared from the program menu. Truly Appreciated! - Joe
  2. survivorjoe

    Can't access Remote Desktop from the Start Menu

    How would I create a shortcut for this?
  3. survivorjoe

    Can't access Remote Desktop from the Start Menu

    No, I have XP Pro. I can get to the remote desktop by going to Start -> Run -> mstsc.exe but I can not get to it from the menu. - Joe
  4. survivorjoe

    Can't access Remote Desktop from the Start Menu

    I have Win XP, and do not see the Remote Desktop option under Start -> All Programs -> Accessories -> Communications. All I have is HyperTerminal. How do I get the Remote Desktop option back? - Joe
  5. survivorjoe

    Question on getting data from two tables

    You are a blessing to all novice coders! I have used your other solution to get my problem solved and to learn more about how to write proper code. - Joe
  6. survivorjoe

    Question on getting data from two tables

    Greetings, I have 2 tables that I need to work on. From my Client table, I need to go through and look at the client email address for each client (unique email addresses stored in this table). For each client, I need to pull out their name, company name and phone number. Next, I have to...
  7. survivorjoe

    Error on Importing a Database from a different host

    I am trying to import a database from one web host to a different one (1and1.com). Here is what happens when I try to process the file: -- phpMyAdmin SQL Dump -- version 2.6.1 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Mar 21, 2007 at 06:14 PM -- Server version...
  8. survivorjoe

    How do I Store Variables in a mySQL Table?

    Here is the solution: $subject = mysql_escape_string("\$firstname, This is a test message"); $body = mysql_escape_string("<b><font color = 'FF0000'>Hi \$firstname. This is a test message.</font></b>"); This lets me store the variable name with the $ in front of it in the table. Thanks for...
  9. survivorjoe

    How do I Store Variables in a mySQL Table?

    Here is the updated test code. Note I have taken out the $ from the subject and body lines: -------------------- $name = "Joe Kamenar"; $email = "info@findandassign.com"; $phone = "215-480-2737"; $subject = "firstname, This is a test message"; $body = "<b><font color = 'FF0000'>Hi firstname...
  10. survivorjoe

    How do I Store Variables in a mySQL Table?

    However, the problem seems to be in the mySQL, as the data does not load. Is there something I am doing wrong in the table insertion? - Joe
  11. survivorjoe

    How do I Store Variables in a mySQL Table?

    OK, but then when I run the following code, why does nothing get inserted into the table? When I take away the "$" from the subject and body, the data loads and gets retreived. $name = "Joe Kamenar"; $email = "info@findandassign.com"; $phone = "215-480-2737"; $subject = "$firstname, This is a...
  12. survivorjoe

    How do I Store Variables in a mySQL Table?

    I want to create a table that has a newsletter that will get emailed out to clients. In the table, I want a field for the Subject, and one for the Body. In the Subject line, I need to include a personalization variable, such as "$firstname". In the Body content, I need to store several...
  13. survivorjoe

    How do I grab the visitor's IP address using JSP pages

    True, but I am going to an external website that is remotely hosted, so the HTTP request still goes through our firewall. For example, here is another site that gives me the 155.188.191.4 IP: http://www.ipaddressworld.com/ I still can't find anything out there that does this when I put the...
  14. survivorjoe

    How do I grab the visitor's IP address using JSP pages

    When I use some of the sites out there like ipchicken.com and others that show your IP, I do see the 155.188.XXX.XXX firewall IP address. What options do I have to be able to do this from our site? We are running weblogic and have a separate web server and application server...
  15. survivorjoe

    How do I grab the visitor's IP address using JSP pages

    Greetings, I want to redirect site visitors coming from our firewall (IP block beginning with 155.188.) to an internal video to download. However, when I use the following line of code: String myIP = request.getRemoteAddr(); I get a router IP beginning with 192. Our site is JSP based. Is...
  16. survivorjoe

    How do I set a SPAN tag ID using NN4?

    Hey Dan, How would I do the wrap? Would this wrap cause confusion to the IE6 and NN6+ browsers? I can not create separate versions of the HTML text containing the <SPAN> tags, but I can use browser-specific .js files to process the <SPAN> tags. Thanks for your help. - Joe
  17. survivorjoe

    How do I set a SPAN tag ID using NN4?

    Greetings, I have some text in a content-managed HTML file using TeamSite, where I want to set values such as Assets Under Management and as-of dates dynamically, using a database table. This HTML page is called by a JSP container page using Weblogic tags. The JSP container page makes the...
  18. survivorjoe

    How to validate a check box before a link can be clicked?

    Hey mwolf00, I think I am OK with using two separate functions as I have two different messages to display. Does your solution work on the Netscape 4.7 series of browsers? Thanks again for your help. - Joe
  19. survivorjoe

    How to validate a check box before a link can be clicked?

    OK, yes that works. Thanks mwolf00. Now, if I have two different sections, each with its own checkbox, how do I pass a parameter to the code so I don't have to make 2 functions? - Joe
  20. survivorjoe

    How to validate a check box before a link can be clicked?

    Greetings, I have the code shown below. When I click on the &quot;Get Application&quot; link, I want it to work only when the checkbox is checked. If it is not checked, I want a pop-up alert box to appear. I have tried a few things, but I am not getting it right. Here is the html code. What...

Part and Inventory Search

Back
Top