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 Mike Lewis 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. biglurch

    Page loading really slow

    while ($row = mysql_fetch_array($usersList, MYSQL_NUM)) { typo make sure theres a comma after $userlist or whatever you query result variable is. Live by the code, Die by the code!!
  2. biglurch

    Page loading really slow

    Instead of doing the for each you could do a while right from your query result and step through that way may save some time it would look something like this. while ($row = mysql_fetch_array($usersList MYSQL_NUM)) { $row[0] = first db field; $row[1] = second } i dont know if that will...
  3. biglurch

    Regx For Password Complexity

    Im trying to write a password complexity regular expression for php this is what i got so far i want it to require 6-12 chars 1 cap letter 1 number and allow symbols and small case letters. Any suggestions please let me know. /(^[A-Za-z0-9]{1,}$){6,12}/ Live by the code, Die by the code!!
  4. biglurch

    Mod Rewrite Queston

    Hi, I am trying to use mod rewrite to take everything after the domain name in the url to then be parsed into variables and generate pages based on what is there. The problem is that image requests wont load because they go through the index page. So what im trying to do is redirect all image...
  5. biglurch

    Connection Issues

    I have a server running dns/dhcp, active directory, and routing and remote services. The machine has two nics one to the internet one to the private network. Each person has a roaming profile. Now it appears that when some people log in the routing and remote services stops handling the internet...
  6. biglurch

    Putting database objects into an array

    Now that i got it working i just wanted to post the code back so you can see. <code> <form method="post" action="/includes/mem_results.php" > <?php $query = 'SELECT * FROM categories'; $result = mysql_query($query) or die('Query failed: ' . mysql_error()); echo "<select>"; while ($row =...
  7. biglurch

    Putting database objects into an array

    After i get them outputed into the list box people will be able to choose the category then i based on the ID from that table it will pull all the entryies from another table with that id associated with it and display them all. I figured i needed the array to so when one is chosen i can...
  8. biglurch

    Putting database objects into an array

    Im trying to take two columns from a table and put the values into an array, so i can use the arrays to put the values into list boxes. This is what i have so far any help will be appreciated. <code> $ids = Array(); //array declaration //query selecting data from table $query = 'Select...
  9. biglurch

    RRAS Problems

    Im having a wierd issue where the rras service continues to stop functioning and passing internet to the clients connected to the network. Basically once i restart the service it works fine. However the wierdest part is it seems to happen at similar times in the week. Any Ideas? Thanks, Lurch...
  10. biglurch

    Multiple people in Access Database

    Thanks for the input im gonna try the database splitting, it sounds like the best solution for me. Live by the code, Die by the code!!
  11. biglurch

    Multiple people in Access Database

    Is there a way to have multiple people doing data entry within and access database at the same time. They would be entering unique records. Currently it errors out saying there is someone else in the file and it cannot save any changes. This is in access 2003. Thanks for any input, Lurch Live...
  12. biglurch

    Internet Being Slowed

    I resolved the issue it seems for some reason the profile of rules set in the firewall was not applied to the zone correctly so i reset it and the problem resolved itself. Thanks for the help, Jason Endres Live by the code, Die by the code!!
  13. biglurch

    Internet Being Slowed

    Hi, Im having problems where acounts that have group policy pushed to them have very slow or no internet access. However the local accounts on the computers work just fine. The basic setup is dsl to firewall to server to server other nic to switch. The services running are obvously active...
  14. biglurch

    Css and Divs

    Got it to work needed to add a div underneath the div 3 that had clear: both; . Thanks again for your help. Live by the code, Die by the code!!
  15. biglurch

    Css and Divs

    this is in firefox btw ie renders it the way it should Live by the code, Die by the code!!
  16. biglurch

    Css and Divs

    because of the float element in the divs, the div for my footer now goes underneath the 3 div block i just added. Any ideas on how to make the footer div stay below the new divs? Live by the code, Die by the code!!
  17. biglurch

    Css and Divs

    wow thank you guys very much for the help makes a ton more sense now. Really appreciate the help. Live by the code, Die by the code!!
  18. biglurch

    Css and Divs

    I am trying to align three divs and i am completely stuck on how to start it. I am going to attempt a basic design below: |-----------------|-------------| |div 1 | | |-----------------| | | | | | div2 | div3 | |...
  19. biglurch

    w3.org reference in DOCTYPE causing access denied errors

    Have you ran the page through a xhtml validator, and if so does it validate? Live by the code, Die by the code!!
  20. biglurch

    Errors on Control Panel

    I keep getting multiple error codes whenever i go to control panel or use any windows run function. <error> The instruction at 0x01001a40 referenced memory at 0x01001a40 memory could not be written. </error> other error codes are 0x75f819ad and 0x01001a40 Any insight would be appreciated...

Part and Inventory Search

Back
Top