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

    optimize my menu links for search engines

    Hi All, For those with a little knowledge of SEO, here's a quick question. From what I've read, it seems that the links you have on your site to the other pages on your site, influence search engines in giving you a better rank. Currently, my menu links are all displayed via an include file...
  2. knuckle05

    error warnings

    Hi, I'm wondering if there is anyway to turn on / off the error warnings displayed by PHP. I keep getting Warnings for unset variables at the top of my page, but they aren't actually errors. Thx
  3. knuckle05

    INSERT problem

    HI All, I'm not receiving an error on this, but no records are being added to my table. Please see code excerpt below: <?php $link = mysql_connect('localhost', 'root', ''); if (!$link) { die('Could not connect: ' . mysql_error()); } echo 'Connected successfully'...
  4. knuckle05

    problem getting variable from URL

    Hi All, I'm new here, and hoping someone can help me with what should be an easy one. In my URL I have this: http://localhost/PHPTest/test.php?TransAction=Save&lngNew=1 from PHP I am trying to get the Transaction variable like so: $TransAction = $_POST['TransAction']; My FORM Method is set...
  5. knuckle05

    what doe %s mean ?

    Hi All, I'm looking at some example code on the php.net website trying to learn the language. What does this mean? printf("ID: %s Name: %s" ...... What do the %s chars evaluate to? Thx!
  6. knuckle05

    how to connect to db in IIS environment

    HI All, I've created my first MySQL db. It's currently located in the C:\MySQL\Data directory. BTW, I'm using Win 2000 Pro Normally in the past, using ASP, I've been able to put my Access database directly amongst my ASP files and call it from my ASP script. How do I set this up in PHP? Do I...
  7. knuckle05

    How do yo Create new database

    Hi All, I'm new to MySQL. I've installed the package in a Windows 2000 environment and now would like to create my first db. I open the winmysqladmin.exe utility but on the database tab, I am not able to create a new db. I only have the Flush options. Am I missing something? Thx!
  8. knuckle05

    ACT record to Excel

    Does anyone know if it's possible to export 1 Act record to Excel? I owuld like to add an extra button to the toolbar on top, whereupon clicking it, the current contact would be exported to an Excel file. Could anyone point me in the right direction here? Thx!
  9. knuckle05

    Easy PHP q's from newbie

    Hi All, I'm an expert ASP developer, and now am about to embark upon my first PHP project. A few q's for you's: 1) Can I devleop under a WIndows environment and run these scripts from my IIS web server? 2) I've read the PHP tutorial at w3schools.com, anyone know of any other good resources...
  10. knuckle05

    Dropdown combo with list from Column A on another worksheet

    Hi All, I have an Excel sheet with a cell that I would like to have data in from another worksheet. On worksheet 2 in Column A is a huge list of products. I want the user to be able to click on teh cell on Worksheet1 and then have a dropdown of all the contents of Column A from worksheet 2...
  11. knuckle05

    using custom function from Access

    Hi All, I'm trying to retrieve records from my db. I built a custom function which works in my SQL inside Access, but when trying to use it from within ASP, I receive this error: Undefined function 'Replace2' in expression. Does anyone know how to use a custom function in an SQL statement? thx!
  12. knuckle05

    help with search statement

    Hi all, I originally posted this in the SQL Server section, but it is really an Access db that I am using. I have a database full of music bands that I want to search on. Everything is fine except that I would like to omit the word 'The' from my search. For ex: When searching for The Beatles...
  13. knuckle05

    help with searching statement

    Hi all, I have a database full of music bands that I want to search on. Everything is fine except that I would like to omit the word 'The' from my search. For ex: When searching for The Beatles or The Doors or The Band, they should be classified under B, or D respectively, instead of under T...
  14. knuckle05

    Interface not registered error?

    Hi All, I've created a client / server app in VB, and have successfully deployed it. I have an EXE server component running on a remote workstation with callbacks to the client workstation working perfectly. I've configured DCOM and everything was working fine. I just RE-compiled my server EXE...
  15. knuckle05

    remove HTML tags from user entry

    Hi All, I have a TEXTAREA field where users on my site will enter a personal bio. I want to disable them from entering HTML tags in there. I know I could parse them out, but this could become a real pain. Is there any way to get the browser to just display the text as enetered? This would act...
  16. knuckle05

    show all IP addresses logged into a page

    Hi All, I'm looking to build a page to be used for online support. The support personnel need to see the IP address' of each user that is logged into the specific page. Is this possible to do in ASP, and if so, how? Just looking for someone to point me in the right direction. Thx alot
  17. knuckle05

    dBase III to MS Access migration

    Hi All, I'm looking to convert a DOS based dBase III app to a form-driven MS Access application. I doubt there is anything that could assist me in conversion with the UI, but is there anything to assist in migrating at least the database? Pls advise... Thx!
  18. knuckle05

    search SQL statement

    Hi All, I need to perform a search on my DB and I am able to get exact matches like this: Select * FROM myTable WHERE myField LIKE 'ABC*' but now I need to return all records that fall between A-G, and then H-P and so on. Is there a way to search all records between those letters? Can...
  19. knuckle05

    Connect to remote COM object

    Hi All, I have created a COM activeX .exe component that I need to install on one Win XP machine and then have all my other client PC's use this one component from the server machine. So, I understand that I would need to configure DCOM to make this all happen, but I'm having a really tough...
  20. knuckle05

    DCOM configuring

    Hi All, I have created a COM activeX .exe component that I need to install on one Win XP machine and then have all my other client PC's use this one component from the client Application. So, I understand that I would need to configure DCOM to make this all happen, but I'm having a really...

Part and Inventory Search

Back
Top