[PHP] pattern matching for the dot-sign

2003-06-05 Thread Wim Paulussen
LS, I am looking for a way to replace . (=dot) to , in a string with either ereg_replace or preg_match . I read the manual in PHP on Pattern matching for preg_match but could not immediately trace it. All help appreciated. Wim -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Installation help

2003-05-27 Thread Wim Paulussen
Did you already look up executables in the mysql/bin folder and ran them . Try launching winmysqladmin. -Oorspronkelijk bericht- Van: Brian Dunning [mailto:[EMAIL PROTECTED] Verzonden: Tuesday, May 27, 2003 6:07 PM Aan: [EMAIL PROTECTED] Onderwerp: [PHP] Installation help Hi, I am a

RE: [PHP] Resending POST Variables

2003-05-29 Thread Wim Paulussen
You can do this either by sending 'hidden' input and store the POST value in the 'hidden' input or by storing the variables in a session. At least , that is what I do and it works for me. -Oorspronkelijk bericht- Van: Shaun [mailto:[EMAIL PROTECTED] Verzonden: Wednesday, May 28, 2003 6:23

RE: [PHP] Session Question

2003-05-29 Thread Wim Paulussen
You should be able to use $_SESSION with register_globals on. citation from manual If you want your script to work regardless of register_globals, you need to use the $_SESSION array. All $_SESSION entries are automatically registered. If your script uses session_register(), it will not work in

RE: [PHP] How to question.

2003-05-30 Thread Wim Paulussen
Dear Ryan, 2 possible scenarios I use : a. store the values in variables that you transfer back and forth using 'hidden' input b. store the values in variables that you register in the session you opened (fyi all my php files start with session_start regardless whether I use it or not). Wim

RE: [PHP] Sessions can be dangerous

2003-05-31 Thread Wim Paulussen
George, Having created an invoicing system using php , I very clearly understand the advantage the session construction holds : the information is maintained on the server, rather than floating around in cyberspace between the client and server each and every time you exchange information. If you

RE: [PHP] Re: OpenSource PHP Project

2003-06-04 Thread Wim Paulussen
Check this out , mate. Fatal error: Failed opening required 'PEAR.php' (include_path='') in /home/groups/p/pr/prattcms/htdocs/phplayersmenu-2.3.5/lib/layersmenu.inc.php on line 4 -Oorspronkelijk bericht- Van: Randum Ian [mailto:[EMAIL PROTECTED] Verzonden: Wednesday, June 04, 2003 11:33

RE: [PHP] Sessions and login

2003-06-11 Thread Wim Paulussen
page 1 : login.php input user name - Post veriable input password- post variable page 2 : verify.php session_start() // supposing name is entered if (!$_POST['password'] == ) { // verification against database if (successfully authenticated) {

RE: [PHP] regarding ?php ? tags

2003-06-13 Thread Wim Paulussen
extract from php.ini file ; Allow the ? tag. Otherwise, only ?php and script tags are recognized. ; NOTE: Using short tags should be avoided when developing applications or ; libraries that are meant for redistribution, or deployment on PHP ; servers which are not under your control, because

RE: [PHP] php editor?

2003-06-16 Thread Wim Paulussen
My two cents : jEdit main reasons why : - syntax highlighting - works on Linux and Windows (java-based) - full folding capabilities Wim -Oorspronkelijk bericht- Van: M-Ali Mahmoodi [mailto:[EMAIL PROTECTED] Verzonden: Monday, June 16, 2003 7:35 AM Aan: [EMAIL PROTECTED] Onderwerp: Re:

RE: [PHP] Good PHP Books (topic wandering)

2003-06-17 Thread Wim Paulussen
I stick with the Wrox publications : for me 'Professional PHP' and 'Beginning PHP Databases' (with very good section about the DB class in PEAR) serve me in almost all my needs. The online manual though serves about 95 % of my queries. -Oorspronkelijk bericht- Van: Joel Rees

[PHP] MSSQL connection

2003-06-17 Thread Wim Paulussen
LS, I am trying to get a connection to a remote MSSQL server. This is what I found in the online manual : quote mssql_connect() establishes a connection to a MS SQL server. The servername argument has to be a valid servername that is defined in the 'interfaces' file. /quote This is the command

RE: [PHP] MSSQL connection

2003-06-17 Thread Wim Paulussen
That's it . Thank you very much ! -Oorspronkelijk bericht- Van: Adam Voigt [mailto:[EMAIL PROTECTED] Verzonden: Tuesday, June 17, 2003 5:10 PM Aan: Wim Paulussen CC: [EMAIL PROTECTED] Onderwerp: Re: [PHP] MSSQL connection You need to turn on the MSSQL extension in your php.ini, under

RE: [PHP] MSSQL connection

2003-06-17 Thread Wim Paulussen
At least : step 1. Does anyone know what is meant by the 'interfaces' file ? quote The servername argument has to be a valid servername that is defined in the 'interfaces' file. /quote -Oorspronkelijk bericht- Van: Wim Paulussen [mailto:[EMAIL PROTECTED] Verzonden: Tuesday, June 17

[PHP] odbc_connect

2003-06-18 Thread Wim Paulussen
LS, I try to get connected to a MSSQL via ODBC (setup with Windows authentication) , but this is the error I get. Warning: SQL error: [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'NT AUTHORITY \ANONYMOUS LOGON'., SQL state 28000 in SQLConnect Anyone any ideas ? Thx,

RE: [PHP] php editor?

2003-06-18 Thread Wim Paulussen
Well said ! More in general , I would like to take the opportunity to thank you and the Zend team for your contribution with regards to the complete PHP project. Wim -Oorspronkelijk bericht- Van: Zeev Suraski [mailto:[EMAIL PROTECTED] Verzonden: Wednesday, June 18, 2003 9:50 AM Aan: Ryan