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 bkrike 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 mikerobb

  1. mikerobb

    Sessions in PHP

    very helpful reply sleipnir214. id like to send you a couple of bucks [via paypal] for the very detailed helpful reply you provided to me. let me know how i could do this.
  2. mikerobb

    Sessions in PHP

    I've been using PHP sessions for some time on a public web server. Recently I installed Redhat 9 / Apache and PHP on a local PC [on my LAN]...
  3. mikerobb

    How to retrieve combined row values?

    Here is my table setup: table_1: tag int(16) pri data blob table_2: word varchar(20) pri tag int(16) mul weight int(16) Query: Trying to find (by order of weight) strings that match 'word'. Example (This works): SELECT W.tag,W.word,W.weight,N.tag,N.data FROM table_1 AS N, table_2 AS W...
  4. mikerobb

    Old Database - Access 1.0

    Does anyone know how I can upgrade my databse from Access 1.0? e.g. Does anyone have / know where to find / a tool that can upgrade it? Thanks :)
  5. mikerobb

    Passing through template file with PHP variables in it?

    LOL. Yes I am sure there is an easier way to do this. I often do things the hard way and then go DOH! What I have now is a template file that looks like this: blah html<MARKER>XXXXX(VAR1)</REKRAM>blah html blah html<MARKER>XXXXX(VAR1)</REKRAM>blah html<MARKER>XXXXX(VAR1)</REKRAM>blah html...
  6. mikerobb

    Passing through template file with PHP variables in it?

    the perl like method does allow $1 to be used instead of the normal php \\1 ($3 for \\3 ...etc.) the $1 is only usuable inside that method call. so you can not reference it on the subsequent php code statement. i've tried variations on those and none of them will work - mainly due to the...
  7. mikerobb

    Passing through template file with PHP variables in it?

    Hi- I have a template file that has some PHP variables inside of it. I would like to pass through the template and evaluate any variables inside the template file. I have &quot;tags&quot; around the PHP variables. <<TEMPLATE FILE>> blah html code <MARKER>$variable1<REKRAM> blah html code...
  8. mikerobb

    srings and REGEXP

    thanks!
  9. mikerobb

    srings and REGEXP

    hi- i really was looking for a quicker method to do the two steps with one step. maybe something like: my $file= ($x =~ s/$path/); ... ?
  10. mikerobb

    srings and REGEXP

    Hi- my $file=$x; $file=~s/$path//; How can I do this in one line? -TIA! :) --Mike Robb http://www.js-x.com
  11. mikerobb

    Double Hash?

    Hi- I have a double hash and am trying to do a foreach (sort) on the inner hash. This code doesn't want to work. Any ideas? my $from_state,$to_state; foreach $from_state (sort keys %rt::states) { foreach $to_state (sort keys %rt::states{$from_state}) { it bombs on the syntax of the 2nd...
  12. mikerobb

    LAN - Who sees who? And why?

    I can ping the router from the windows98 computer (this one works to get to the internet) i can not ping the router from the windowsME computer (this is the one that can not get to the internet)
  13. mikerobb

    LAN - Who sees who? And why?

    I have a simple LAN setup with 2 computers and a router. Each computer can &quot;see&quot; the other computer - but only one of the computers can see the router. What possible things could I have incorrectly set up to cause this to happen? Specifics: Netgear ISDN Router (RT338) Linksys 5 Port...

Part and Inventory Search

Back
Top