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 Chriss Miller 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. Kennya1

    Sending a quote to a html file

    Oops 2 One Last time <A HREF=\"mailto:youxrname@aol.com\"> youxrname@aol.com</A> How do I get rid of the slashes
  2. Kennya1

    Sending a quote to a html file

    Oops it sees it as \"mailto:youxrname@aol.com\">youxrname@aol.com</A>
  3. Kennya1

    Sending a quote to a html file

    If I want to send the following to an HTML file $m = '<A HREF="mailto:youxrname@aol.com"> youxrname@aol.com</A>'); header("Location: message.html?message=" . $m); The message.html file sees it as \"mailto:youxrname@aol.com\">youxrname@aol.com</A></font> How do i get rid of the slashes
  4. Kennya1

    Download a file

    I am sure this has been asked befor. I need html/PHP code that when some clkicks n a link it will download a file that I have on my web site. I would like the exact location of the file to be hidden
  5. Kennya1

    Invalid Character Error

    I am editing directly on the server. Since it generates an error statement I cannot view the code I am actually seeing the code for the error statement
  6. Kennya1

    Invalid Character Error

    Nope Both This echo ' <img border="0" id="img6" src="Images/button60.jpg" height="30" width="100" alt="Home" onmouseover="FP_swapImg(1,0,/*id*/\'img6\',/*url*/\'Images/button61.jpg\')" onmouseout="FP_swapImg(0,0,/*id*/\'img6\',/*url*/\'Images/button60.jpg\')"...
  7. Kennya1

    Invalid Character Error

    THe following line of code gives me an "invalid character" error in frontpage 2003 I have isolated it to the \' characters however if I chanf ge it to just ' the page will not load when placed on my web site I get a Parse error: parse error in /../..//test.html on line 326 error What is...
  8. Kennya1

    web page calls another web page

    Is there a way to write html code to have a web page call upanother web page WITHOUT the user clicking on a link?
  9. Kennya1

    Clear a web page/ Hide html code

    Is there PHP command that will clear a web page after you wrote something to it? Is there a way to hide html code when someone clicks view/source
  10. Kennya1

    Mysql Update Threads

    I have a Table Serial with 3 fields ID, FName, Lname whe I type in with php $user = "user"; $pass = "password"; $db = "Database"; $link = @mysql_connect( "localhost", $user, $pass ); if ( ! $link ) { die( "Couldn't connect to MySQL: ".mysql_error() ); } $sql = 'UPDATE `Serial` SET `FName`...
  11. Kennya1

    SQL Limitation

    Yes and No I have no experience with it and the following issues 1-I am not sure how to implement it 2-Some of the work stations are Win98 3-The program may be used on computers that I have no acess to so the VB setup must not only install the program but set up the MSDE server and configure it...
  12. Kennya1

    SQL Limitation

    Unfortunately the selection criteria is sound, is not user generated and cannot be reduced. It involves 64 fields with 8 possibilites for each field. Also unfortuatley the queries are exclusionary in nature (use the NOT modifier) so that the union command would not work (at least as far as I can...
  13. Kennya1

    SQL Limitation

    Does anyone know of a method to overcome the 99 Limit on ANDs in SQL Select Statement as outlined in http://support.microsoft.com/default.aspx?scid=kb;en-us;209761 I need to overcome it using visual basic code THANKS
  14. Kennya1

    HELP!!!

    THanks for the advice. I get this error when trying to set the relationship in Visual Basic 6. WITH THE FOLOWING CODE Set db = OpenDatabase(&quot;All Data.mdb&quot;) Set rel = db.CreateRelation(&quot;Test&quot;) With rel .Table = &quot;ChartNew&quot; .ForeignTable =...
  15. Kennya1

    HELP!!!

    I am trying to relate two database in Vb6 and get the following error &quot;You can't add or change a record because a related record is required in table &quot; Also (this is a real newbie question) once related and your at a record in the first database how do you get the information on the...

Part and Inventory Search

Back
Top