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!

Search results for query: *

  1. welshtroll

    Config Issue?

    checked the apache log? Apache Group\Apache2\logs\error.log '... and then it wouldn't compile?'
  2. welshtroll

    change selected with RMouseButton

    I found this also, here is the way I resolved it: where m_feedtree is my treeview // actions performed on right-click HTREEITEM TreeItem; TreeItem = m_feedtree.GetDropHilightItem(); m_feedtree.SelectItem(TreeItem); I think this will work if you have 'Disable Dragdrop' on or off. Hope this...
  3. welshtroll

    Survival of Open Source

    http://www.vnunet.com/News/1141848 Could get messy i think. '... and then it wouldn't compile?'
  4. welshtroll

    how do i get it so it deletes/ignores ro something the HTML people put

    You can use the optional second parameter to specify tags which should not be stripped '... and then it wouldn't compile?'
  5. welshtroll

    how do i get it so it deletes/ignores ro something the HTML people put

    forgot this link too http://www.php.net/manual/en/function.strip-tags.php '... and then it wouldn't compile?'
  6. welshtroll

    how do i get it so it deletes/ignores ro something the HTML people put

    could try using the strip_tag function: $string = strip_tags($string, '<a><b><i><u>'); '... and then it wouldn't compile?'
  7. welshtroll

    Text Edit Software

    Two to meantion Editplus (http://www.Editplus.com) EditPlus is an Internet-ready 32-bit text editor, HTML editor and programmers editor for Windows. While it can serve as a good replacement for Notepad, it also offers many powerful features for Web page authors and programmers. conTEXT...
  8. welshtroll

    Is it possible to resize a button....

    you could use style sheets to do it like this <INPUT TYPE=&quot;submit&quot; style=&quot;width:75%;&quot;> - or - <INPUT TYPE=&quot;submit&quot; style=&quot;width:500;&quot;> '... and then it wouldn't compile?'
  9. welshtroll

    Spaces mess-up QueryString

    see yesterdays post thread434-585974 '... and then it wouldn't compile?'
  10. welshtroll

    Using a PHP page to provide a complete MySQL DB Backup

    this may give you some pointers in the right direction http://codewalkers.com/seecode/46.html Hope this helps '... and then it wouldn't compile?'
  11. welshtroll

    urlencode

    To the best of my knowledge: Both return a string in which all non-alphanumeric characters are replaced with % and a hex value of 2 digits (with he exception of (-_.) ) urlencode encodes space as + (plus sign) rawurlencode encodes space as '%20' '... and then it wouldn't compile?'
  12. welshtroll

    browser archive

    Couldn't see if anyone had posted this before, http://browsers.evolt.org/ Handy archive of old and new browsers. '... and then it wouldn't compile?'
  13. welshtroll

    Virus Hell

    I've been getting into contact with some people about the booklet idea, I 'll have to see where it leads first but Ive drawn up some starter topics to be included: What is online security? What is an anti-virus program? What is a Firewall? What is Spyware? Top Security tips How to tell if I...
  14. welshtroll

    &quot;Litttle Picture In URL Line&quot;

    http://accessfp.net/faviconico.htm this should help you '... and then it wouldn't compile?'
  15. welshtroll

    Thinner borders

    Not that i know of, either define a CSS or place the style in the table tag ie <table style=&quot;border:1px solid #000000&quot;> '... and then it wouldn't compile?'
  16. welshtroll

    CSS Background image not fully displayed

    It's alittle confusing with those 2 <head> tags. You seem to have half a page with half of another page at the bottom. <html> <head> (containing title/style/script tags) </head> <body> Main content. </body> </html> think to problem i occuring because there are 2 definations for table.main...
  17. welshtroll

    Popularity Script - Can't find one!

    This the sort of thing you're after http://www.hotscripts.com/Detailed/21196.html '... and then it wouldn't compile?'
  18. welshtroll

    CSS Background image not fully displayed

    think it's due to that fact that the table hasn't got a width therefore the background image is just showing want it can. For example if you where to place int he image in the top cell using <img tag, it would fill all the way across for the size of the imaghe, but so would the lower cells...
  19. welshtroll

    Mailing with existing POP3 and SMTP accounts?

    Start by visiting here http://www.php.net/imap to learn about how to build a web-based email service Another place would be http://www.hotscripts.com/PHP/Scripts_and_Programs/Email_Systems/Web-based_Email/ for prebuild ones Tutorials Create Your Own Mail Script With PHP and IMAP...
  20. welshtroll

    Rowspan table cell resize problem in IE

    You could try and nested table approach <TABLE border=&quot;1&quot; width=&quot;100%&quot;> <TR> <TD valign=&quot;top&quot;> <TABLE border=&quot;1&quot; width=&quot;100%&quot;> <TR> <TD>logo</TD> </TR> <TR> <TD>nav</TD> </TR> </TABLE> </TD>...

Part and Inventory Search

Back
Top