Re: [PHP-WIN] Missing PHP registered Streams: httpsand ftps

2007-01-04 Thread Leif Gregory
Hello Frank, Thursday, January 4, 2007, 9:51:30 AM, you wrote: > php_openssl.dll requires one or more dll's to load. Can't remember > the names off hand, but it's something like sas*32.dll. If these are > not found the extension will not load. You can check phpinfo() to > see if it loads. libeay3

Re: [PHP-WIN] Dynamic HTML table sort with PHP

2006-07-07 Thread Leif Gregory
Hello Ken, Friday, July 7, 2006, 10:26:57 AM, you wrote: > If I have a table header that contains a link that when clicked > resubmits the page to itself with the proper sort query variables > (e.g. index.php?sortBy=ORDER_ID&sortOrder=ASC), I want PHP to > rewrite the sortOrder query string to be

Re: [PHP-WIN] output data to a text box

2005-10-28 Thread Leif Gregory
Hello Panos, Friday, October 28, 2005, 3:05:48 PM, you wrote: > What i'm trying to do, is manipulate data that will appear in > something that will look like a multiline textbox. Unfortunately > doesn't allow tags within it, thus not Although I prefer to use inset borders like: Play with css

Re: [PHP-WIN] Re: ezmlm warning

2005-05-31 Thread Leif Gregory
Hello Mikey, Tuesday, May 31, 2005, 8:42:07 AM, you wrote: M> I keep getting these emails, and after a few exhanges with my ISP M> they are trying to say that it is nothing to do with them, but as M> far as I can work out from the error message this is my ISP's mail M> server bouncing messages fro

Re: [PHP-WIN] Breadcrumb trial as sessions

2005-05-12 Thread Leif Gregory
Hello S.D.Price, Thursday, May 12, 2005, 5:41:10 AM, you wrote: SDP> Hi can anyone help, I would like to develop a PHP breadcrumb SDP> trail for navigation. The examples I have seen on the web look at SDP> the location of the page the user is on, attempt to break up the SDP> URL and use breadcrumb

Re: [PHP-WIN] Reg Ex help

2005-01-13 Thread Leif Gregory
Hello Ron, Thursday, January 13, 2005, 8:17:51 AM, you wrote: R> I am trying to do a simple check to make sure a string contains at R> least an alphanumeric character before I print the string. How can R> I do this? if (preg_match("/[a-zA-Z0-9]+/"),$str) { echo $str; } There may be a more e

[PHP-WIN] Making includes easy.... Am I a 'tard?

2005-01-04 Thread Leif Gregory
Hello all, Here's the situation. I have a site where each php page contains the "header" (top bar), "navigator" (left-side bar), the "footer" (bottom bar), and the css file. Each of those four files are in a folder called includes in the site root folder (sorry if the terminology is incorrect).

[PHP-WIN] HTTP Header Viewer... Do I need regexps?

2004-04-28 Thread Leif Gregory
Hello everyone, I've been putzing with this for about a week on and off now. I've googled like crazy and tried to figure out the regexps, but I can't just get it. What I'm doing is taking some code I found to show me the HTTP headers from a remote server and making it a bit more dynami