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 bkrike 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: *

  • Users: AndyatIES
  • Content: Threads
  • Order by date
  1. AndyatIES

    Local Apache crashes IE6 with broadband connection

    This must be a common problem with an easy answer: I run Apache 2.0.43 with PHP and MySQL, as a local server on Win XP Home. It was all working fine,until I installed a broadband connection (NTL) and Norton firewall. Now whenever I call on my Apache as local host, Internet Explorer 6 completely...
  2. AndyatIES

    Word 2002 unpredictable?

    I have noticed that the Word 2002 toolbar button "Bullets" now applies a style (great idea: why was a bullet list ever styled "normal" before?) Trouble is, as I've built my templates all sorts of style names are appearing in the toolbar style box when I click this button...
  3. AndyatIES

    Word lists styles

    Office XP Anyone know why the toolbar button for Word bullet lists still gives you unstyled bullets, when the styles list is cram full of nicer looking bullets? What's the point of a bullet button and a list of bullet (oh, and numbered too!) styles, if they don't connect in any way? Or have I...
  4. AndyatIES

    Table styles in Word 2002

    Am I really wrong about this, or am I just too used to using CSS? Why is it that if I define a Word 2002 table style to use a particular font, is it NEVER used? Instead, I always get the font of the preceding paragraph. Logic says that if I am allowed to specify a different font in (say) the...
  5. AndyatIES

    Positioning captioned tables and diagrams in Word 2002

    I can't believe I feel alone in this one! For years, in Word 97 we have been enclosing [a caption line, a table or diagram, and a source attribution line] in a frame and positioning it at the top or foot of the page so text flows around it. It is really easy and controllable, and since we are a...
  6. AndyatIES

    absolute urls in variables

    I use a variable to set relative links in include files: eg: $var = &quot;../../&quot; sets a required relative prefix for [filename] as in: <img src=&quot;<?= $var ?>image.gif&quot;> but: $var = &quot;http://website.com&quot; fails to find the file, presumably because of the // being...
  7. AndyatIES

    &quot;Quotes&quot; in non-MIME email

    I'm using a form to send emails from my sites. Simple stuff: name, sender's email, etc. plus message textarea. I use the PHP mail() facility so the message goes as a string in a variable. Can I prevent quotes in the user's text coming through as escaped characters, eg: I like your...
  8. AndyatIES

    Generalised script for loading tab file into MySQL table?

    I need a generalised script to refresh MySQL tables from a PHP page, ie: 1) Delete all records from a named MySQL table 2) Read in records from a named tab-separated file 3) Confirm Table update OK (and presumably be repeatable to update a series of tables in one go, from a series of tab...
  9. AndyatIES

    Converting URLS: Win98 anomaly?

    I'm using this code to convert urls: // Find e-mail addresses and add a mailto <a href> tag. $str = preg_replace(&quot;/(\w|\-|\.)+@(\w|\-)+(\.|(\w|\-)+)+/&quot;, &quot;<a href=\&quot;mailto:$0\&quot;>$0</a>&quot;, $str); // Find URLs (starting with http or https) and add a <a href> tag...
  10. AndyatIES

    PHP and search engines

    Do search engines assemble PHP pages with includes and index the result? Or do they see the 'fragments', the files used to build the client-side browser page? ie, if I place meta tags into a common header include file, via PHP variables in the including page, will they be seen by search engines...

Part and Inventory Search

Back
Top