Re: [PHP] Regex for Validating URL

2004-09-02 Thread Jason Wong
On Friday 03 September 2004 02:23, Nick Wilson wrote: > * and then Jason Wong declared > > > - now re-read what I said. I rest my case. > > Classic. Thankyou Jason, you're a star. I really didnt apreciate just > how inept at interaction with peers you truly were. Beautiful, very kind > of you t

[PHP] literal dates

2004-09-02 Thread Justin French
Hi all, I'm really sure how to tackle this. Part of a CMS I'm building is an events calendar. The events in question can be in any part of the world (in any timezone) and the date & time the user enters for the event is considered to be the local time of that event. So when I enter 2004-09-03

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Nick Wilson
* and then Jim Grill declared > > Guys, while we may be able to debate what is rude, what is blunt, > > what should have been said, what was said, the facts are clear. He > > apologized, and I think its time to lest this debate rest for now. While > I > > would admit that harshness runs ramp

Re: [PHP] Adding a realtime monitoring console

2004-09-02 Thread Eric Emminger
Kelly, > The most appealing method (in my mind) is to develop a socket protocol > that allows the application to communicate with the console. The drawback > here seems to be that the console will not usually be active, and I'm > concerned that attempting to establish a connection will impose too

[PHP] Re: PHP to replace javascript

2004-09-02 Thread Sam Hobbs
"Jack Gates" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Javascript can open a separate and specifically sized window from a web > page > when a user clicks on a link that might reference a note or picture etc. > > Can this be done with PHP? If yes, will someone tell me where

[PHP] HTTP Authentication in include()

2004-09-02 Thread Matt Wondra
Howdy. I'm trying to include a file from an HTTP Authenticated server in PHP. I have a valid username and password. Is there any way to remotely login and include the file? Ex: include("https://www.url.com/incl1.php";); // Trying to include from password-protected site How do I get past the 4

Re: [PHP] Re: List Slow?

2004-09-02 Thread Curt Zirzow
* Thus wrote M. Sokolewicz: > John Nichel wrote: > >Is the list about two hours behind in delivering email today for > >everyone, or is it just me? Of course, if it is just me, I'll have to > >wait two hours to find out. ;) > > > 1.5 hours for me... and many more people I'd guess... Judging by t

[PHP] PHP to replace javascript

2004-09-02 Thread Jack Gates
Greetings, This is my first post here and I am still new to PHP and learning. I just joined this list last night. Javascript can open a separate and specifically sized window from a web page when a user clicks on a link that might reference a note or picture etc. Can this be done with PHP? I

[PHP] Copying HTML from a document to another document

2004-09-02 Thread Sam Hobbs
I need to copy HTML from a DOM document to another DOM document. The following is a simplified version of what I need to do. // Create HTML to be copied from $ContentsDocument = new DOMDocument(); $TextNode = $ContentsDocument->createTextNode("Text"); $Paragraph = $ContentsDocument->createElement

RE: [PHP] List of Users

2004-09-02 Thread Lone Wolf
Why not just shell it out? Robert > -Original Message- > From: Jesus [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 02, 2004 11:56 AM > To: [EMAIL PROTECTED] > Subject: [PHP] List of Users > > > Hi need some clue about of how a can get a list of the all > the user in may ser

[PHP] PHP Help

2004-09-02 Thread ConbuD
Hey, Im making a site to where I can fill out a form and it adds updates to the main page, but I only want the site to display 5 updates on it, now I know how to make it only show 5 updates, but then that means when a new update is posted to the site, it just stores the old updates in the database

[PHP] keep page information

2004-09-02 Thread devil_online
Hi have this code, that I print two or more things ate a diferente time, and the page refreshs after 10 seconds. however it is possible to keep in the page the information that was printed? thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

Re: [PHP] this is a test

2004-09-02 Thread Curt Zirzow
* Thus wrote Octavio Herrera: > this is a test yes mail is getting delivered.. the mail server is slow right now. Curt -- The above comments may offend you. flame at will. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] List Slow?

2004-09-02 Thread Curt Zirzow
* Thus wrote John Nichel: > Is the list about two hours behind in delivering email today for > everyone, or is it just me? Of course, if it is just me, I'll have to > wait two hours to find out. ;) very slow. Curt -- The above comments may offend you. flame at will. -- PHP General Mailing

Re: [PHP] Large database, slow search times

2004-09-02 Thread Curt Zirzow
* Thus wrote Adrian Teasdale: > Hi there > > Basically the database consists of only 1 field that stores a set of > character strings. I need to be able to do a wildcard search that will > find any matches, so if I'm looking for any matches containing "ABC" > then it should pull up the record "12

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Curt Zirzow
* Thus wrote Nick Wilson: > > * and then Manuel Lemos declared > > >Does anyone have the regex to make sure an http address is full and > > >without error? like http://www.example.com > > > > Usually I use this expression: > > > > '^(http|https)\://(([-!#\$%&\'*+.0-9=?A-Z^_`a-z{|}~^?]+\.)+[A

Re: [PHP] PHP Cached Templates

2004-09-02 Thread William Moore
On Tue, 31 Aug 2004 16:24:19 -0400, rogue <[EMAIL PROTECTED]> wrote: > Sorry if this is the wrong place for this post. I am having problems > where PHP templates that I modify via ftp are not showing changes for > like 1 minute or so. I assume this is some kind of server caching but I > am not sure

Re: [PHP] new line function

2004-09-02 Thread Thomas Goyne
On Thu, 02 Sep 2004 01:08:20 -0400, John Holmes <[EMAIL PROTECTED]> wrote: Curt Zirzow wrote: $fixed = preg_replace("/(\r?\n)|\r/",'',$oldstring); on retrosopect.. reading into that regex i get: unix: sets the standard to use \n windows: can't really decide on \r or \n so just uses them both m

Re: [PHP] Regex for Validating URL

2004-09-02 Thread John Nichel
Nick Wilson wrote: So chill the fuck out and be nice okay` I'll do you one better, and just filter you outhow's that? And when you say something like this to one of the most respected (not to mention one of the nicest) members of this list, I'm sure I won't be the only one. Welcome to /dev

[PHP] Re: Large database, slow search times

2004-09-02 Thread Octavio Herrera
Yup that is the solution, INDEX and match on Octavio -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Jim Grill
> Ahem... > > > > No, Jason was right (in his usual, abrupt, rude kinda way). > > Guys, while we may be able to debate what is rude, what is blunt, > what should have been said, what was said, the facts are clear. He > apologized, and I think its time to lest this debate rest for now. While I > w

RE: [PHP] Windows user authentication thru PHP and Apache

2004-09-02 Thread David Kevey
This has worked for me in the past - it requires LDAP to be enabled in PHP to authenticate against the domain controller. ldap://YOUR_DC";; //DC to authenticate against $filter="(samaccountname=$Username)"; $connect=ldap_connect($ldap_server); ldap_set_option($connect, LDAP_OPT_PROTOCOL_VERSION,

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Robert Cummings
Would this be a good time to bring up the argument in favour of freedom to top post? Ducking and running, Rob. On Thu, 2004-09-02 at 13:34, John Holmes wrote: > From: "Justin Palmer" <[EMAIL PROTECTED]> > > > Maybe what this community needs is an advanced mailing list. > > > > I think that thes

[PHP] Re: Large database, slow search times

2004-09-02 Thread Torsten Roehr
"Adrian Teasdale" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi there > > I have been given the task of integrating a search into a database we > have which contains 40 million records and I would really do with some > advice! Thanks to everyone the other day who helped us parse

[PHP] Re: List Slow?

2004-09-02 Thread M. Sokolewicz
John Nichel wrote: Is the list about two hours behind in delivering email today for everyone, or is it just me? Of course, if it is just me, I'll have to wait two hours to find out. ;) 1.5 hours for me... and many more people I'd guess... Judging by the incredible amount of duplicate answers t

[PHP] Re: Load Data Local Infile

2004-09-02 Thread Harlequin
Dark forces indeed...! OK, OK... Now I have got it working using a local file on the HDD. Next - integration with PHP: using the following syntax: $Upload= "LOAD DATA LOCAL INFILE '/public_html/CSVFILENAME.CSV INTO etc does not seem to work and provides no error even though I'm trapping any.

Re: [PHP] Regex for Validating URL

2004-09-02 Thread John Nichel
John Holmes wrote: I don't know what camp most of you consider me in and it doesn't really matter. Summer's over. School's back in. What are you still doing at camp? ;) -- By-Tor.com It's all about the Rush http://www.by-tor.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] Re: Large database, slow search times

2004-09-02 Thread Matthew Weier O'Phinney
* Adrian Teasdale <[EMAIL PROTECTED]>: > I have been given the task of integrating a search into a database we > have which contains 40 million records and I would really do with some > advice! Thanks to everyone the other day who helped us parse this same > database into mysql. > > Basically the

[PHP] Sessions Problems

2004-09-02 Thread Octavio Herrera
Hello, im working in a website and I have this problem with sessions I have an admin page where I use session_start() and I have the user interface page where I also use session start, the problem is that when I open the user page, it overwrites my session I previously opened in the admin page, h

[PHP] List of Users

2004-09-02 Thread Jesus
Hi need some clue about of how a can get a list of the all the user in may server I use the imap functions to work with the mailboxes but in some point I need show up a list of the all the user but I cant find a function to get all the user thank for any help

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Nick Wilson
* and then Justin Palmer declared > Is PHP not open source. > > What a joke. agreed, that was ridiculous. -- Nick W -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] this is a test

2004-09-02 Thread Jay Blanchard
[snip] this is a test [/snip] Did the test work? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regex for Validating URL OT

2004-09-02 Thread Jay Blanchard
[snip] I agree Nick for an open source community this list is not very open. Quite a few "I am better than you" type people on the list. How does that make the beginner feel? I better not ask a question, for I fear that I will get flamed. What a joke! There are many other places to go and get

[PHP] Apache and php work but they do not work together

2004-09-02 Thread My Ton
Hello, I installed PHP 4.3.8-Win32 for Windows manually following the instructions on the web http://www.php.net/manual/en/install.windows.manual.php I extracted it into C:\php, added C:\php to the PATH, copied ini-recommended to C:\php, renamed it to php.ini and moved all files located in the dll

Re: [PHP] php does not get variable values in POST method

2004-09-02 Thread Matt M.
> I developed an html/php form in a Php version 4.0.6, working fine, but when > a moved the files to another web server with Php 4.3.2 the file > procesaadmision.php called in the Post method does not get any of the input > html variables defined in the calling form. > I am guessing register_glo

Re: [PHP] trying to do too much with functions?

2004-09-02 Thread Matthew Weier O'Phinney
* Jonathan Haddad <[EMAIL PROTECTED]>: > John Holmes elegantly wrote: > > From: "Justin French" <[EMAIL PROTECTED]> > > > I have a few functions with way too many parameters in them, or > > > functions which have a non-obvious order of parameters which I > > > constantly have to refer to as I'm w

Re: [PHP] Windows user authentication thru PHP and Apache

2004-09-02 Thread Marek Kilimajer
Merritt, David wrote: All, Wanting to build a login page which uses the same user information as the user's Windows account. Is there a way to validate a user's login information against the primary Windows domain controller using PHP and Apache? Searching the archives all I'm finding is how t

Re: [PHP] Need direction on PHP-CLI MUD Server

2004-09-02 Thread Don Myers
Unfortunately, since they are coming in through a socket and not actual telnet/ssh I don't think $fp=fopen("/dev/stdin", "r"); works? Isn't that only for terminal based input? Donald Myers on 9/2/04 10:31 AM, Jim Grill at [EMAIL PROTECTED] wrote: >> Hello, I have been banging my head trying to

Re: [PHP] php does not get variable values in POST method

2004-09-02 Thread Jason Davidson
Its possible you had register globals turned on for your server, and its not turned on now. How do you retrieve these vars, try retrieving them with $_REQUEST['myVarName'] or $_POST['myVarName'] Jason Leticia Campos <[EMAIL PROTECTED]> wrote: > > I developed an html/php form in a Php version

Re: [PHP] Handling XML output in a slim way

2004-09-02 Thread Markus Fischer
Manuel Lemos wrote: You may want to try this XML writer class. It lets you just add tags and data and then it outputs the data properly encoded and nicely indented according to your specifications. It does not requere any special extension. Probably exactly what I want, thanks. - Markus -- PHP G

Re: [PHP] Statistics

2004-09-02 Thread Daniel Schierbeck
John Holmes wrote: From: "Daniel Schierbeck" <[EMAIL PROTECTED]> Is there a simpler way of approaching this? Use an already written program that parses your web logs and already gives you this information? ---John Holmes... I feel like doing it myself :) -- Daniel Schierbeck -- PHP General Maili

RE: [PHP] php does not get variable values in POST method

2004-09-02 Thread Jay Blanchard
[snip] I developed an html/php form in a Php version 4.0.6, working fine, but when a moved the files to another web server with Php 4.3.2 the file procesaadmision.php called in the Post method does not get any of the input html variables defined in the calling form. [/snip] A common problem. In

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Nick Wilson
* and then Manuel Lemos declared > >Does anyone have the regex to make sure an http address is full and > >without error? like http://www.example.com > > Usually I use this expression: > > '^(http|https)\://(([-!#\$%&\'*+.0-9=?A-Z^_`a-z{|}~^?]+\.)+[A-Za-z]{2,6})(\:[0-9]+)?(/)?/' > DING DIN

[PHP] List Slow?

2004-09-02 Thread John Nichel
Is the list about two hours behind in delivering email today for everyone, or is it just me? Of course, if it is just me, I'll have to wait two hours to find out. ;) -- John C. Nichel ÜberGeek KegWorks.com 716.856.9675 [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsub

[PHP] Large database, slow search times

2004-09-02 Thread Adrian Teasdale
Hi there I have been given the task of integrating a search into a database we have which contains 40 million records and I would really do with some advice! Thanks to everyone the other day who helped us parse this same database into mysql. Basically the database consists of only 1 field that s

RE: [PHP] Regex for Validating URL

2004-09-02 Thread Dan Joseph
Ahem... > > No, Jason was right (in his usual, abrupt, rude kinda way). Guys, while we may be able to debate what is rude, what is blunt, what should have been said, what was said, the facts are clear. He apologized, and I think its time to lest this debate rest for now. While I would a

RE: [PHP] php does not get variable values in POST method

2004-09-02 Thread Vail, Warren
That is because the option "register globals" was deprecated in later releases (provided a way for hackers to alter variables not even on your form). Suggest you code each reference to a form variable as $_POST["varname"] (assuming you are using the form "post" method). Warren Vail -Origina

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Nick Wilson
* and then John Nichel declared > http://www.google.com/search?hl=en&ie=UTF-8&q=validate+url+php+regular+expression&btnG=Google+Search > > Is that enough, or do you want one of us to write the code for you too? You misunderstand me. Im sorry you feel that way. I'll have a look at it now, tha

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Nick Wilson
* and then John Holmes declared >>Who determines advanced vs. newbie? I think that's another discussion. >>"mean guys" You belittle the point. It's not about hurt feelings, it about respect for other people and common courtesty: The cornerstones of community. I dont have a problem with ev

Re: [PHP] Regex for Validating URL

2004-09-02 Thread John Holmes
From: "Jason Wong" <[EMAIL PROTECTED]> I usually reserve my more elegant prose for my sweetheart. Please stop call me that... it creeps me out. ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Nick Wilson
* and then Jason Wong declared > - now re-read what I said. I rest my case. Classic. Thankyou Jason, you're a star. I really didnt apreciate just how inept at interaction with peers you truly were. Beautiful, very kind of you to share your wit and comprehension with us all. -- Nick W -- P

Re: [PHP] Session understanding

2004-09-02 Thread James E Hicks III
On Thursday 02 September 2004 10:09 am, Michael Gale wrote: > So if I try and store a variable that would be unique to each window it > would get over written. Is this a configuration problem ? > It sounds to me like you need to turn off session.auto_start in your php.ini file and call session_st

Re: [PHP] trying to do too much with functions?

2004-09-02 Thread Jonathan Haddad
John Holmes elegantly wrote: From: "Justin French" <[EMAIL PROTECTED]> I have a few functions with way too many parameters in them, or functions which have a non-obvious order of parameters which I constantly have to refer to as I'm working. Since I'm using PHP as my templating language (none s

RE: [PHP] Regex for Validating URL OT

2004-09-02 Thread Justin Palmer
At the time I had sent the email it was right in line with what was going on at the time. Sorry if the message did not get through in a timely matter. I just think that if someone has the time to give a snide remark then they have the time to do it in a nice way, or just don't respond. If people

Re: [PHP] ftp functions not working

2004-09-02 Thread Michal Migurski
shell>$php -r "phpinfo();" | grep ftp Registered PHP Streams => php, http, ftp, compress.zlib shell>$ I looked at the complete output and did not see that anything else for FTP. What do I need to do add FTP support for the CLI? Just to be absolutely sure, try to use `grep -i ftp` -- the "FTP" in

RE: [PHP] Session understanding

2004-09-02 Thread Ed Lazor
> -Original Message- > ... Is there a better way to do this ... I was hoping to not have to pass > variables between each page by including them > in the URL. How come? It sounds like you're going to end up adding a lot of complexity to the app if you're just trying to hide a specific com

[PHP] uppercase sentences

2004-09-02 Thread Justin French
Hi all, I'm working with a bunch of users who hardly ever use correct punctuation in their submitted content. I realise there's very little I can do, but I'm trying to do *something* to make things a little more presentable. At the very least, ensuring that all "sentences" begin with a capita

Re: [PHP] Regex for Validating URL

2004-09-02 Thread raditha dissanayake
Justin Palmer wrote: Maybe what this community needs is an advanced mailing list. Don't mean to be arrogant but this has been discussed before :-) please refer to the newby guide on how to search the archives. I know many of you will think some contributers are arrogant. But the truth is you w

Re: [PHP] ftp functions not working

2004-09-02 Thread Cory D. Wiles
I figured out why that it wasn't working. My prefix isn't the standard default prefix. I put php in /usr/local/apache/php. Though my script calls for /usr/local/bin/php...that php binary was copied there from the previous installation. Therefore, when I recompiled it was still using the 'old'

Re: [PHP] Statistics

2004-09-02 Thread John Holmes
From: "Daniel Schierbeck" <[EMAIL PROTECTED]> Is there a simpler way of approaching this? Use an already written program that parses your web logs and already gives you this information? ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.ne

Re: [PHP] Regex for Validating URL

2004-09-02 Thread John Holmes
From: "Justin Palmer" <[EMAIL PROTECTED]> Maybe what this community needs is an advanced mailing list. I think that these types of attitudes just make the new user to php stray away. If we had a section beginners list that if people asked dumb questions, or questions that are stated dumb, some peop

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Jason Wong
On Thursday 02 September 2004 23:17, Justin Palmer wrote: > Maybe what this community needs is an advanced mailing list. Arguments for and against splitting lists (in general and not just php lists) into 'newbie' and 'advanced' can be found all over the web. > I think that these types of attitud

Re: [PHP] ftp functions not working

2004-09-02 Thread Pablo M. Rivas
mhhh.. try this: #!/usr/local/bin/php and look on the console if you see ftp enabled... ¿do you have only ONE PHP INSTALL IN YOUR BOX?.. or two? On Thu, 02 Sep 2004 09:43:27 -0500, Cory D. Wiles <[EMAIL PROTECTED]> wrote: > I am writing some backup scripts that will ftp my *.gz files to my ftp

Re: [PHP] ftp functions not working

2004-09-02 Thread Cory D. Wiles
Michal Migurski wrote: #!/usr/local/bin/php output when ran: 'Damn' During the make I didn't see any errors. When I ran phpinfo() [http://www.randomthoughtprocess.com/info.php] it shows that I have FTP support. Is there something that I am missing? The version of PHP you're running on the comm

RE: [PHP] Regex for Validating URL

2004-09-02 Thread Justin Palmer
Is PHP not open source. What a joke. Justin -Original Message- From: raditha dissanayake [mailto:[EMAIL PROTECTED] Sent: Thursday, September 02, 2004 10:24 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Regex for Validating URL Justin Palmer wrote: >I agree Nick fo

Re: [PHP] ftp functions not working

2004-09-02 Thread Cory D. Wiles
Marek Kilimajer wrote: Cory D. Wiles wrote: I am writing some backup scripts that will ftp my *.gz files to my ftp server. Unfortunately I didn't originally install php with ftp support (oversight on my part). I reconfigured/installed PHP with --enable-ftp and restarted everything, but the funct

RE: [PHP] Regex for Validating URL OT

2004-09-02 Thread Jay Blanchard
[snip] I agree Nick for an open source community this list is not very open. Quite a few "I am better than you" type people on the list. How does that make the beginner feel? I better not ask a question, for I fear that I will get flamed. What a joke! There are many other places to go and get

Re: [PHP] Regex for Validating URL

2004-09-02 Thread John Nichel
Justin Palmer wrote: I agree Nick for an open source community this list is not very open. Quite a few "I am better than you" type people on the list. This list is tame Justin. How does that make the beginner feel? I better not ask a question, for I fear that I will get flamed. What a joke! How

Re: [PHP] Regex for Validating URL

2004-09-02 Thread raditha dissanayake
Justin Palmer wrote: I agree Nick for an open source community this list is not very open. Quite a few "I am better than you" type people on the list. This is not an open source list. this is a php list. -- Raditha Dissanayake. --

[PHP] this is a test

2004-09-02 Thread Octavio Herrera
this is a test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] this is a test

2004-09-02 Thread Octavio Herrera
this is a test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ftp functions not working

2004-09-02 Thread Michal Migurski
#!/usr/local/bin/php output when ran: 'Damn' During the make I didn't see any errors. When I ran phpinfo() [http://www.randomthoughtprocess.com/info.php] it shows that I have FTP support. Is there something that I am missing? The version of PHP you're running on the command-line may or may not

Re: [PHP] Session understanding

2004-09-02 Thread raditha dissanayake
Michael Gale wrote: Hello, The site is for a ticket tracking system, if a CSR has a window open and is working on company A - I would like to save some information about company A in a session variable. Since the session is stored in the DB I figured it was save. Then if the CSR need to l

Re: [PHP] Statistics

2004-09-02 Thread raditha dissanayake
Daniel Schierbeck wrote: I'm trying to develop a set of functions that can handle the statistics of a website. I want them to be as flexible as possible, and i want to be able to have several different "views" (day, week, month, year). For example if i wanted to know how many visitors, visits a

[PHP] Re: php does not get variable values in POST method

2004-09-02 Thread Thomas Seifert
On Thu, 02 Sep 2004 09:03:34 -0700, Leticia Campos wrote: > I developed an html/php form in a Php version 4.0.6, working fine, but when > a moved the files to another web server with Php 4.3.2 the file > procesaadmision.php called in the Post method does not get any of the input > html variables

[PHP] this is a test

2004-09-02 Thread Octavio Herrera
this is a test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Locate compiled PHP (Zend) Scripts

2004-09-02 Thread Alexander Rehbein
Hi, does anyone know, how I can easily determine which websites are using compiled PHP-Scripts. I have to check our webserver, based on BSD and Apache, for these Scripts. Would appreciate any suggestions from you! Thank you Alex -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Windows user authentication thru PHP and Apache

2004-09-02 Thread Merritt, David
All, Wanting to build a login page which uses the same user information as the user's Windows account. Is there a way to validate a user's login information against the primary Windows domain controller using PHP and Apache? Searching the archives all I'm finding is how to do this with PHP &

Re: [PHP] ftp functions not working

2004-09-02 Thread Jason Wong
On Thursday 02 September 2004 22:43, Cory D. Wiles wrote: > #!/usr/local/bin/php > During the make I didn't see any errors. When I ran phpinfo() > [http://www.randomthoughtprocess.com/info.php] it shows that I have FTP > support. Is there something that I am missing? You're using php-cli. What

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Manuel Lemos
Hello, From: "Nick Wilson" <[EMAIL PROTECTED]> Does anyone have the regex to make sure an http address is full and without error? like http://www.example.com Usually I use this expression: '^(http|https)\://(([-!#\$%&\'*+.0-9=?A-Z^_`a-z{|}~^?]+\.)+[A-Za-z]{2,6})(\:[0-9]+)?(/)?/' You may also want t

Re: [PHP] Newbie: Validate Required Form Fields

2004-09-02 Thread Manuel Lemos
Hello, I have a newbie question related to validating required Form fields. Suppose we have a two-step user registration process with scripts register1.php and register2.php, each page containing a set of required and non-required fields. In register1.php, when user submits the form, it calls regi

Re: [PHP] ftp functions not working

2004-09-02 Thread Marek Kilimajer
Cory D. Wiles wrote: I am writing some backup scripts that will ftp my *.gz files to my ftp server. Unfortunately I didn't originally install php with ftp support (oversight on my part). I reconfigured/installed PHP with --enable-ftp and restarted everything, but the functions still don't work.

Re: [PHP] Handling XML output in a slim way

2004-09-02 Thread Manuel Lemos
Hello, On 09/02/2004 06:25 AM, Markus Fischer wrote: If it's not broken don't fix it. If what you are doing right now works stick with it because it consumes very little memory or CPU compared to DOM functions. You are right, it works. But I'm not satisified and up until now I've been dealing w

Re: [PHP] trying to do too much with functions?

2004-09-02 Thread Robby Russell
On Thu, 2004-09-02 at 07:11, Justin French wrote: > I have a few functions with way too many parameters in them, or > functions which have a non-obvious order of parameters which I > constantly have to refer to as I'm working. Since I'm using PHP as my > templating language (none smarty here!)

[PHP] php does not get variable values in POST method

2004-09-02 Thread Leticia Campos
I developed an html/php form in a Php version 4.0.6, working fine, but when a moved the files to another web server with Php 4.3.2 the file procesaadmision.php called in the Post method does not get any of the input html variables defined in the calling form. Thanks for any help Leticia Campos

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Jason Wong
On Thursday 02 September 2004 22:15, Justin French wrote: > No, Jason was right (in his usual, abrupt, rude kinda way). abrupt -- maybe, rude -- no I usually reserve my more elegant prose for my sweetheart. > Good questions get good answers. Good advice. -- Jason Wong -> Gremlins Associates

Re: [PHP] trying to do too much with functions?

2004-09-02 Thread Jason Wong
On Thursday 02 September 2004 22:11, Justin French wrote: > I have a few functions with way too many parameters in them, or > functions which have a non-obvious order of parameters which I > constantly have to refer to as I'm working. Since I'm using PHP as my > templating language (none smarty he

Re: [PHP] Checkbox Question

2004-09-02 Thread Curt Zirzow
* Thus wrote Nick Wilson: > Hi all, > > Im using php's cURL module to submit a form on a remote site. All is > *good* so far but i dont know what parameter to pass to ensure that > this checkbox is 'checked': > > TIAS. a=http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.p

[PHP] Re: Session understanding

2004-09-02 Thread Torsten Roehr
"Michael Gale" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > Morning .. at least it is where I am :) > > I have a small issue with sessions, at the moment I am using sessions on our web site and storing the session > information in a db_table. It is working great. Right n

Re: [PHP] Regex for Validating URL

2004-09-02 Thread Curt Zirzow
* Thus wrote Nick Wilson: > > * and then John Holmes declared > > From: "Nick Wilson" <[EMAIL PROTECTED]> > > > > >Does anyone have the regex to make sure an http address is full and > > >without error? like http://www.example.com > > > > (?:http://(?:(?:(?:(?:(?:[a-zA-Z\d](?:(?:[a-zA-Z\d]|-

Re: [PHP] importing DBF data into mysql

2004-09-02 Thread PHP Junkie
Ave, It was the permissions issue. Although even before I used the script, I knew permissions would play a role so I had set the permissions appropriately. Unfortunately I didn't set them for an enclosed folder where I was storing the DBF file. Anyhow, it's working now... Thanks a ton! On 9/

Re: [PHP] trying to do too much with functions?

2004-09-02 Thread raditha dissanayake
Justin French wrote: I have a few functions with way too many parameters in them, or functions which have a non-obvious order of parameters which I constantly have to refer to as I'm working. Since I'm using PHP as my templating language (none smarty here!) as well as the programming language.

[PHP] Re: trying to do too much with functions?

2004-09-02 Thread Torsten Roehr
"Justin French" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have a few functions with way too many parameters in them, or > functions which have a non-obvious order of parameters which I > constantly have to refer to as I'm working. Since I'm using PHP as my > templating langua

Re: [PHP] Session understanding

2004-09-02 Thread raditha dissanayake
Michael Gale wrote: Hello, Morning .. at least it is where I am :) good evening. Close to 10:00pm in tropical paradise (Sri Lanka in case you don't know where that is ) I have a small issue with sessions, at the moment I am using sessions on our web site and storing the session information in

Re: [PHP] print at a specific time

2004-09-02 Thread devil_online
thanks On Wed, 1 Sep 2004 22:18:30 -0500, Brent Clements <[EMAIL PROTECTED]> wrote: -- Using Opera's revolutionary e-mail client: http://www.opera.com/m2/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] print at a specific time

2004-09-02 Thread devil_online
thanks... On Wed, 1 Sep 2004 22:18:30 -0500, Brent Clements <[EMAIL PROTECTED]> wrote: Sorry forgot to enclose the variable values. doh! I needs more coffee! -Brent - Original Message - From: "John Holmes" <[EMAIL PROTECTED]> To: "Brent Clements" <[EMAIL PROTECTED]> Cc: "devil_online" <[

RE: [PHP] Regex for Validating URL

2004-09-02 Thread Justin Palmer
Maybe what this community needs is an advanced mailing list. I think that these types of attitudes just make the new user to php stray away. If we had a section beginners list that if people asked dumb questions, or questions that are stated dumb, some people would take the time to help the newbie

Re: [PHP] Session understanding

2004-09-02 Thread John Holmes
From: "Michael Gale" <[EMAIL PROTECTED]> The site is for a ticket tracking system, if a CSR has a window open and is working on company A - I would like to save some information about company A in a session variable. Since the session is stored in the DB I figured it was save. Then if the CSR nee

RE: [PHP] Session understanding

2004-09-02 Thread Dan Joseph
> I have a small issue with sessions, at the moment I am using > sessions on our web site and storing the session > information in a db_table. It is working great. Right now I am only > storing the users ID, name and role in the session > data, but I would like to store other information as w

RE: [PHP] Regex for Validating URL

2004-09-02 Thread Justin Palmer
I agree Nick for an open source community this list is not very open. Quite a few "I am better than you" type people on the list. How does that make the beginner feel? I better not ask a question, for I fear that I will get flamed. What a joke! There are many other places to go and get good a

  1   2   >