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

  • Users: captlid
  • Order by date
  1. captlid

    ms sql php module error

    I am trying to get php 4.3.1 apache 1.3x and the mssql functions working. When I try to run a basic connection, just to connect to the (remote) mssql server apache crashes, keep getting a page fault error in the ntwdbdlib.dll file. Note this system is on win98se.. thanks,
  2. captlid

    openssl and apache mod_ssl

    whats the difference between the two? Or are they both needed to use https: uri's? thanks
  3. captlid

    formatting a phone number

    thanks that worked like a charm, I am guessing pcre has better cross compatibility?
  4. captlid

    formatting a phone number

    $phone = '6467897654'; $phone = ereg_replace("([0-9]{3})([0-9]{3})([0-9]{4})", "(\1) \2-\3", $phone); the output comes out like () - need phone number to look like (646)789-7654 And is there any difference between regex on windows and linux?
  5. captlid

    accessing variables

    //foreach ($catname as $category) //{ //echo $category."<br>"; //} ?> <p>Links >> <?=$catname[0]?></p> ok I got rid of the the above lines and added the [0]; looks like its working :) thanks for everything
  6. captlid

    accessing variables

    ok both your options worked, but theres one little problem.. The output becomes links >> category depending on the amount of records the query gets, thats how many words get outputted. For example if theres three records the screen shows links >> categorycategorycategory thank you so much...
  7. captlid

    accessing variables

    <? $query2 = "select url, website, description, name from links, linkscat where linked =1 and category ='".$_GET['cat']."' and category = linkscat.id"; $result2 = mysql_query($query2); echo $query2; $catname = array(); echo $catname; ?> <div> <p>Links >><?=$catname?></p> <? while ($row2 =...
  8. captlid

    accessing variables

    I took out all the html code, cause its a php question, I am not using tables for this, just one div, and line breaks thanks for the quick response...
  9. captlid

    accessing variables

    Cat one Cat two Cat three links >> $catname <a href="www.website.com">My Web Site</a><br> <a href="www.website2.com">My Web Site two </a><br> <a href="www.website3.com">My Web Site three </a><br>
  10. captlid

    accessing variables

    ok this is probably very simple but I cant figure out how to do it. :( $query2 = "select * from links, linkscat where linked = 1 and category ='".$_GET['cat']."' and category = linkscat.id"; $result2 = mysql_query($query2); echo $catname; while ($row2 = mysql_fetch_assoc($result2)) { ?>...
  11. captlid

    printing out mysql query

    say theres a query mysql_query("select * from table where id ='$id'"); how can I print out the query statement? i.e... select * from table where id = 3 thanks
  12. captlid

    sorting question...

    i didnt know you can put queries inside the order by clause, cool thanks.
  13. captlid

    sorting question...

    I have two columns, one is an int and the other is a date, I want the records to show first the null values in the int column and have that sorted by date, then the rest of the rows sorted by date. I tried doing order by int asc, date asc, but it only orders the null values properly. so this...
  14. captlid

    windows 98se networking problem...

    one more question, when clicking on entire network, shouldnt it at least show the computer i am on. in xp it does this, in win98 i dont see the win98 pc or for that matter anything... I tried using the find computer in search it finds my local computer but when i click on open it says...
  15. captlid

    windows 98se networking problem...

    ok i got the two pc's pinging each other, apparently the winxp had mcafee security firewall loaded. I tried doing what that above website suggested now i cant even share files on the win98 machine. :( (nothing in the right click menu when clicking on a folder. File sharing is enabled. This is...
  16. captlid

    windows 98se networking problem...

    i adjusted network settings in win98se to client for microsoft networks. when i rebooted the machine i didnt get a login box
  17. captlid

    windows 98se networking problem...

    i have two machines win98se, winxp pro sp2 sharing an internet connection through a netgear router. That works fine. I tried to enable file sharing on both computers and cant get it to work. win98se 192.168.0.2 255.255.255.0 winxp pro sp2 192.168.0.3 255.255.255.0 gateway 192.168.0.1 DHCP...
  18. captlid

    westell modem and netgear router problem

    http://www.broadbandreports.com/faq/1373 I found this faq but i am not sure how to do what it says.. how do you telnet into a router?
  19. captlid

    westell modem and netgear router problem

    model number is c90-36r516-01
  20. captlid

    westell modem and netgear router problem

    I have verizon adsl, using an old westell modem, i can get onlin with it (I am on it right now) hooked up to one computer directly. But when I try to hook up the netgear router (its a mr814 version 3) between the pc and the westell modem I cant get online. (note win98se is the OS) I called up...

Part and Inventory Search

Back
Top