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: *

  • Users: ScottCybak
  • Content: Threads
  • Order by date
  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

    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...
  5. 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
  6. 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
  7. 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...
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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...
  13. ScottCybak

    Sendmail, IIS5 on 2kServer

    Hi, I'm sortof a &quot;n00b&quot; network admin here at our small office, and i'm trying to get sendmail working in php. i editted my php.ini file (on server) to reflect the proper smtp server, and created a basic script that only had this: <?php mail(&quot;scottcybak@hotmail.com&quot...
  14. ScottCybak

    Compile error in previous access version

    Hello, i've been developping in acess 2000 since i began, and yesterday i installed XP - what a wonderfull upgrade, my mouse scroll works in listboxes, and most importantly, the OpenReport method supports opening arguments and the modal property. Now, this database will be ran on 2000 versions...
  15. ScottCybak

    Getting Directories file listing

    I'm trying to get a script on my website to display the contents of one of the folders. Eg, i want to output the file names and sizes from the dir &quot;www/scott/music&quot; on my web server i usually search the php.net manual, but i haven't been able to access it for a few days and i'd like...
  16. ScottCybak

    Date Diff

    How do i compare 2 dates, and find the number of days between them? I've searched the PHP online manual (php.net/manual/en) and also the MySQL documentation, but have found none. Thanks in advance! Scott Cybak scott@athree.com
  17. ScottCybak

    IIS and public viewing

    Hi all, I've managed to get IIS working for our intranet, but i'm curious if it's possible to open this up to the web for viewing also? I don't want to point a DNS at our domain, just somehow get it so people can punch in my IP and view my site.. How do i configure this, and how do people...
  18. ScottCybak

    Undefined Variable &amp; Supplied argument invalid

    Hi, i'm getting this message: Warning: Undefined variable: result in c:\inetpub\wwwroot\test.php on line 36 Warning: Supplied argument is not a valid MySQL result resource in c:\inetpub\wwwroot\test.php on line 36 When i try to run the following snippet of code (posted it all, as i don't know...
  19. ScottCybak

    Connectivity with MySQL windows 2k

    Here's the scoop. I mangaged to get PHP working in windows 2000. I managed to get MySQL installed on the box, and now, i'm trying to use php to connect to a MySQL database locally. i can't get the: $link = mysql_connect (&quot;C:/mysql/bin/mysqld-nt.exe&quot;, &quot;myusername&quot...
  20. ScottCybak

    I'm having a small prob with my LAN

    I'm having a small prob with my LAN. I have 6 comps, a SOHOware broadband router and an 8port 3com hub, with a Albatel(?) dsl modem (PPPoE) Current schema: dsl -> router -> hub -> 6 comps i've had the most success with this setup. All comps are running 2k pro, have dhcp @ auto-dns enabled...

Part and Inventory Search

Back
Top