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. internetguy

    Other Language Using Javascript

    I am doing a project where you click on a location on a map, and Coldfusion will query a database for that location. I got everything to work right, except for the fact that the coldfusion tags are being ignored. I have a function that sets a td tag's innerHTML to display the query results...
  2. internetguy

    Stop form with Javascript Alert

    I have a javascript function that is called when clicking the submit buttion on a form, if there is information left out or if fields don't match it makes an alert notifying the user what they are missing. The only problem is that the page continues to be processed. I tried adding a return...
  3. internetguy

    Switching text with onClick( )

    I have a photogallery that I want to have an image and description show when I click a thumbnail. The images work, but I do not know what to do with the text. Here is my source for my main page: <textarea name="information">Information goes here</textarea> and here is my javascript switch...
  4. internetguy

    Drop Down Menu works almost

    I have a test page with just a navigation bar and a bunch of javascript. In the bar there are 9 links with subcatergories, but only the 5 are showing up. Here's my code: <html> <head> <title>Test Page</title> <link href="style.css" rel="stylesheet" type="text/css"> <script language="JavaScript"...
  5. internetguy

    Canon 20D Event Link To More Programs

    I bought a Canon 20D digital Camera, and it came with some software to open explore the camera, kind of like the Scanner and Camera Wizard. When I try to link an event to the Camera it only lists, photoshop, scanner and camera wizard, microsoft publisher, and word. The only event is device...
  6. internetguy

    New to ASP, IfElse Troubles

    ok, I have a contact form that needs validation. Basically, if an input field is blank=report error, else move on to next input field. The only problem is that it is not moving onto the next input field to check. Here is my code. <% If Request.Form<>"" Then If Request.Form("email")="" Then...
  7. internetguy

    PHP order into columns

    I have a photo gallery with pictures from me and 2 friends. I have it select which photographer based on Get variables, and all the picture information is stored in a mysql database. I got the photos to sort each picture by row, but I want to sort two pictures per row. This is what is...
  8. internetguy

    shoutbox controls

    ok, I have a javascript function that opens a shoubox when you click a link. I have a pair of on/off links, and I know how to do the on, but I do not know how to close the window from the main page. I also want this shoutbox window to display on top of the main page. Here is my opener script...
  9. internetguy

    Login Problem

    When I log in as any account, even admin, it will immediately log off. There are no errors or anything, please help if this sounds familiar.
  10. internetguy

    Refresh errors on forum

    I made my own forum and it works, but it has its little quirks. One problem I am having is that I am running GET statements to pass user info and topic titles etc. When people hit the back button it asks to refresh the information, and sometimes that will make a double post. I know I can make...
  11. internetguy

    Forum Refresh Issues

    I wrote my own forum because I wanted to rival PHPBB, haha. I pass a few variables through the URL in GET statements, and I have the problem when people press back it gives the screen asking to resend the information. I also get the problem when I post a response and press back and it posts the...
  12. internetguy

    Iframe and &lt;td onClick&gt;

    I am having a problem where I have TD's with mouse over and mouse out properties, but I also want to have an onClick that target's an IFrame. What would be the code that does this??? I have looked everywhere and I cannot find anything that deals with just this.
  13. internetguy

    Sorting queries into pages

    I have a large product list, so I have broken down the products into classes, but there are still about a hundred or so. I want to only show 20 per page, and then have a link to go to the next 20 results. I am not sure how to do this efficiently, I was thinking multiply an integer by 20 and...
  14. internetguy

    Kinda Java, but in PHP???

    Ok, I am trying to have a section on the side of my webpage with several links with friend names. I am trying to make it where when you click the link of the person's name it sends a php request to itself displaying that person, picture in the center of the page. I know everything except how to...
  15. internetguy

    Trouble showing users in a list

    I am having trouble showing a list of users in a database on a page. I have a page where it asks which users to delete, and I want a list to the side to see all the names, but when I try the page it says that it &quot;cannot jump&quot; to the last row in my table, here is my code... <?php...
  16. internetguy

    Error showing users in a table

    I am having trouble showing a list of users in a database on a page. I have a page where it asks which users to delete, and I want a list to the side to see all the names, but when I try the page it says that it &quot;cannot jump&quot; to the last row in my table, here is my code... <?php...
  17. internetguy

    Having trouble with DELETE in user lists

    I have a database with users, but I want to make it so that an administrator can delete any users they see fit. The code seems correct and no error occurs but the user is still in the database. Here is my code. <?php $name = $_POST['name']; if (!$name) { echo &quot;You did not input a...
  18. internetguy

    oh, it was a problem with the $resu

    oh, it was a problem with the $result by the way.
  19. internetguy

    Inserting into a database, HELP PLEASE

    I am having trouble inserting data into a database. The connection is good because there is no error reported in the mysql_connect(). Here is my code, let me know if there is anthing wrong. <?php $name = $_POST['name']; $email = $_POST['email']; $url = $_POST['url']; $db =...
  20. internetguy

    Having trouble with passwords and connectivity

    Two problems, I accidentally made what I think were passwords and I also cannot connect to localhost. I am using Apache and PHP, and when I go to test a connection it says unable to find localhost.

Part and Inventory Search

Back
Top