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 strongm 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. ScottCybak

    Current page with URL/Passed variables

    I was wondering if there was any other method to grabbing the full url of the current page. Basically, i want to use PHP_SELF, but get all the variables passed to it in the URL.. So, if the url were: http://www.mysite.com/testing.php?Num=1&Rec=2 my result string (could be an array, depends...
  2. ScottCybak

    Checkbox Array Not Working?

    My form expert looks as such: <input type=&quot;checkbox&quot; name=&quot;my_array[]&quot; value=&quot;1&quot; checked /> Introduction<br /> <input type=&quot;checkbox&quot; name=&quot;my_array[]&quot; value=&quot;2&quot; checked /> Newest Member<br /> Now, my form handler doesn't work.. it...
  3. ScottCybak

    Replace Between X and Y

    I've read str_replace, ereg_replace and preg_replace, but still can't formulate what the heck i need to do.. I'm trying to extract the string between <x> and <y> from a string. So, say the string is &quot;<x>This will be visible</y> This won't <x>This will be as well</x>&quot; i want it to...
  4. ScottCybak

    Access ODBC Query Problem

    Well, i managed to figure out that the wildcard for the access odbc driver is a % rather then the native access * Scott Cybak Nighthawk Transport Inc.
  5. ScottCybak

    Access ODBC Query Problem

    Hello, i'm trying to run a simple search query, but am running into problems while creating the Sql string. In access: WHERE [RefNum] Like '*asdf*' works perfectly, but when i create the string in PHP and access via odbc_exec it fails: WHERE [RefNum] Like '*$strWhat*' sadly, if i echo the...
  6. ScottCybak

    Cat 5/5e

    I'm curious as to what would happen if i was to install cat 5 female connectors on cat 5e line? I imagine the performane would be reduced to max of 100 mb/s. TIA Scott Cybak scott@athree.com
  7. ScottCybak

    Background Music

    I don't think our installer turned it on in the system - possible that i could do it? Scott Cybak scott@athree.com
  8. ScottCybak

    Background Music

    I just tried to listen to background music via feature 86, and it said it's not available. is this possible for me to turn on somehow without having to re-wire anything? TIA Scott Cybak scott@athree.com
  9. ScottCybak

    MS Access ODBC connections

    Hi, i'm currently using an obdc dns name to connect a php app i'm working on to an access db. The only problem is coming in that, in the access database i'm querying, there is a linked table, and when i try to execute a query which includes this table, i'm getting an error message saying that...
  10. ScottCybak

    Before i continue

    I'm considerring setting up IIS 5 on my windows 2000 server. Before i expose my LAN to the internet, i'd like to secure it so internet visitors can't hack me. I was wondering what i should install/configure do keep our internal security as it currently is. I currently have a router that acts...
  11. ScottCybak

    Windows 2000 server/Pro networking software Power Users

    I had some problems getting domain users to run certain local programs - one of which is MS Works (yea, i know, it's garbage). I Overcame this by running regedt32, and setting the permissions to the program in question. Scott Cybak scott@athree.com
  12. ScottCybak

    www hosting with IIS and security

    Hi, i currently have 2kserver installed with active directory and dns. I'm using a router that's connected to my broadband modem, this router provides the DHCP for the network to take some of the load off my server, as well acts as NAT. I plan on getting a static IP for my broadband from my...
  13. ScottCybak

    Explorer bars

    Just a bump, i haven't been able to figure this out yet. i've tried so far: parent._main.location.href top._main.location.href frame['_main'].location.href all return errors.. anyone care to guess? Scott Cybak scott@athree.com
  14. ScottCybak

    Array question

    Jim, Thanks for the response. Seeing what you had done and testing made me realize i was approaching the situation wrong. I was only getting the result from the 1st row because i never knew that mysql_fetch_Array grabs only a single row of the query results. Thanks for opening my eyes! Scott...
  15. ScottCybak

    Array question

    Hi, i'm trying to cycle through an array of query results. The query has 4 fields $Sql = &quot;SELECT.. blah blah &quot;; $Result = mysql_query($Sql); $Rst = mysql_fetch_array($Result); Now, i know i can cycle through the rst on the fly using a While (x = fetch_array blah blah) BUT, i want...
  16. ScottCybak

    Explorer bars

    There is no code as of yet.. but, so far i have this on the page that i want to appear <a href=&quot;javascript: fShowLink();&quot;>test</a> .. and, in a linked js file: function fShowLink() { var strUrl = window._main.location.href; alert(strUrl); } i'm at least trying to get it to...
  17. ScottCybak

    Arg - i goofed up

    OOP, i forgot to mention that the server is servername.nighthawk.ca nighthawk.ca is just the active dir name - i think - am unsure really :S btw - i had another thing to ask - i want to set VPN so i can do work from home - but our router uses NAT to share our broadband internt - i think i can...
  18. ScottCybak

    Arg - i goofed up

    Alright, purple star for that one!! Now, how bout my email - i used to have to use the pop3 setting of &quot;nighthawk.ca&quot; as they don't have a pop3.nighthawk.ca method. I'm such a pain! Scott Cybak scott@athree.com
  19. ScottCybak

    Arg - i goofed up

    Before you laugh at me, note that i've never even touched win2kserver or nt4 or any server OS for that matter.. I setup our server with win2k server - i installed active directory, dns and let my router handle the dhcp Now, i named my server nighthawk.ca - according to the install help files...
  20. ScottCybak

    Explorer bars

    Hi, I've managed to get my own custom explorer bar html page to open documents in the _main portion of the IE window, but, i'd like to display the URL of the page that is loaded in _main on my explorer bar. .. document.location.href displays the url of the html page in the explorer bar.. and...

Part and Inventory Search

Back
Top