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!

Recent content by ScottCybak

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

Part and Inventory Search

Back
Top