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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by PS1983

  1. PS1983

    Remove newlines from a variable

    Additional information under unix you need to filter \n and \r then it works $message2=str_replace("\r"," ",$message2); $message2=str_replace("\n"," ",$message2); Bye, steve
  2. PS1983

    Remove newlines from a variable

    $textarea = str_replace("\n","<br>",$textarea); works wonderful! I just had the variable mispelled. =( Thank's for your help!
  3. PS1983

    Remove newlines from a variable

    Hi! I'm just trying to code a guestbook (for excercise purposes only), where I have a formular with 2 text inputs and a textarea field. The entries are written in a textfile: E.g: Somebody Name|somebody@name.com|Some message a guy left|Timestamp| The whole entry is one line of my file. Now my...
  4. PS1983

    function that get's variable &amp; uses it in document.form.variable.value

    Your're right, that works wonderful! Thank you very much! Bye steve
  5. PS1983

    function that get's variable &amp; uses it in document.form.variable.value

    Hi! I'm wondering if it's possible to use variables in the document.* string... my example function checkAmount(amount){ if (document.form.amount.value != 0){ blablabla } } I hope you can understand my problem =) Your help is very appreciated! Thanks in advance, steve
  6. PS1983

    w3c valid frameborders html &amp; css

    thanks clarkin, that works pretty good, but there is still a border left... we're on the right way though =) maybe somehow we can fix this through the css... stay tuned results will be posted. by the way those attributes(&quot;frameborder&quot; &quot;framespacing&quot; & &quot;border&quot;)...
  7. PS1983

    w3c valid frameborders html &amp; css

    Yes that's where the frameborder should stand in..., the frame tag... netscape and other browsers only understand border & framespacing... so in order to display the site correctly in other browsers you need to take these attributes...(but sadly they are not valid &quot;HTML 4.01 Framset&quot...
  8. PS1983

    w3c valid frameborders html &amp; css

    Hmm the validator doesn't like those definitions neither =(. See the output: This page is not Valid HTML 4.01 Frameset! Below are the results of attempting to parse this document with an SGML parser. Line 14, column 36: there is no attribute &quot;BORDER&quot; (explain...). <frameset...
  9. PS1983

    w3c valid frameborders html &amp; css

    frameborder=&quot;no&quot; should have the same effort as frameborder=&quot;0&quot; Where on that site can I find those definitions?
  10. PS1983

    w3c valid frameborders html &amp; css

    Hi! I have a question concerning frameborder attributes in html and css. in html i know these attributes: border=&quot;0&quot; frameborder=&quot;0&quot; framespacing=&quot;0&quot; but: they are not w3c validated... (the doctype i used is:<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01...
  11. PS1983

    Excel: check box that Strikethrough a row

    Hi there! Can u help me with this one? I createt a checkbox in my excel sheet &quot;o&quot; o | Text blabla | Text blabla | .... | ....... now when the box gets checked, i want the text to be strikedthrough. I can't reccord a macro that is able to do this easy operation! can somebody help...
  12. PS1983

    Removing LINKS from Favourites

    hmm you should have a look at the Default User and All Users Favorites Delete the Links there too and your problem should be solved... hth steve
  13. PS1983

    Connection Management Wizard /connection management administrator kit

    Hi there! I have a pretty simple question, but google couldn't help me... =( I want to know the filename for the &quot;Connection Management Wizard &quot; (Start -> Settings --> Network and Dial Up Connections --> Make new Connection) So i can start the wizard with the run prompt. thanks in...
  14. PS1983

    Outlook 2000 server rulez?

    Hi there, my question should be pretty simple to solve for pro's like you =) my mail account is blabla@enterprise.com now i created an alias testsend@enterprise.com so far so good. now i want to create a server based rule that everytime somebody sends an email to my alias...
  15. PS1983

    Frames!?

    THX a lot staraway, works. thx madhouse for the answer but i tried it before but it did't work... have a nice day and thanks again for the instant answers bye steve

Part and Inventory Search

Back
Top