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: gxpark
  • Content: Threads
  • Order by date
  1. gxpark

    Optimizing a query

    Hi, I wonder if someone is willing to help me optimize the following query: SELECT <somefields> FROM schools LEFT JOIN addresses ON addresses.fkSchool = idSchool LEFT JOIN users ON users.idUser = fkLogin LEFT JOIN xlevels ON xlevels.fkSchool = idSchool WHERE fkDep = 1 AND (fkLevel = 2 OR...
  2. gxpark

    Redirecting URLs

    Hi, I'm trying to get Apache to rewrite URLs based on this simple need: convert this: /somedir/help/chat to this: /somedir/help/index.php?on=chat I want to use an .htaccess file on /somedir/help, but I can't seem to find the proper config for mod_rewrite... I've tried with this (remember its...
  3. gxpark

    Image's position absolute, relative to other object that is -Possible?

    Hi, Is it possible to place an image on the screen relative to the position of another image? Something like this: <img id=&quot;imgRel&quot; src=&quot;someimage&quot;> <img id=&quot;imgAbs&quot; src=&quot;otherimage&quot; style=&quot;position: absolute; visibility: hidden&quot;> <script...
  4. gxpark

    Assigning &quot;onmouseenter&quot; programatically

    Hi, I'm trying to assign the &quot;onmouseenter&quot; event programatically with the following code: function cscript(root) { for(var i=0;i<root.childNodes.length;i++) { btn = root.childNodes(i); if (btn.className.toLowerCase().length > 6) { chk =...
  5. gxpark

    How to use mod_rewrite

    Hi, I've successfully configured mod_rewrite on a server using the following .htaccess file: RewriteEngine on RewriteBase / RewriteRule ^edu(.*) /index.php?uri=$1 And so when any URL of this type is entered: http://myserver/edu/lalala/yeah Apache calls...
  6. gxpark

    Custom MIME types are indexed?

    Hi, I'm wondering if search engines index files that don't have a standard extension (html, asp, etc.). I want to use some special extensions to distinguish some of the files on my page, and although they would be threated as normal PHPs by the server, I wonder if they will be indexed. Thanks...

Part and Inventory Search

Back
Top