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 gkittelson 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. rycrostud

    Can I feed the spiders PHP in disguise?

    As we all know, whether or not dynamic pages with .php/.asp/.cgi extensions are treated the same as plain .html files by the spidering search engines is a matter of constant debate. I've recently discovered a very handy method of forcing your server to treat .php files as if they were .html by...
  2. rycrostud

    Deleting contents of multidimensional arrays

    Here's a good one. It's giving me a real headache. Normally, if you have an array e.g. $array = array($val1,$val2,$val3); you can delete the contents by doing something like: unset ($array[2]); would delete '$val2' from the array. How do you delete the contents of a 2 dimensional array of...
  3. rycrostud

    include() and require() occasionally don't work

    This is the code that I have at the top of my index page: <? require('includes/config.php'); $title = HOME_TITLE; include('functions/functions.php'); include('includes/header.php'); include('newsnav.php'); ?> Here's the contents of my header.php include file: <html> <head> <title><...
  4. rycrostud

    include() and require() occasionally don't work

    My site is hosted on a Cobalt Raq3 server running PHP 4.0.6. I'm having some problems with PHP include() and require() commands. Most of the time a page will load without any problem, but occasionally the include file isn't included before the HTML is served to the browser. For instance my...

Part and Inventory Search

Back
Top