[PHP-WIN] Domain name

2004-03-18 Thread Sudeep Sarath
Hello, How to create domain name using PHP. For example once we create an account in intranets.com, we get a url as accountName.intranets.com. How this can be done in PHP in linux environment. Thanks John Yahoo! India Promos: Win a trip for 2 to Britain. Click here.

[PHP-WIN] Re: Domain name

2004-03-18 Thread DvDmanDT
Personally, I'd suggest getting mod_l33t, and just modify the config file.. But you'll need a domain name setup which allows for this in that case.. Well, you'll need that anyway so.. Try to find mod_l33t.. Google for like mod_l33t-1.0.tar.gz... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdm

[PHP-WIN] Expression evaluation - how is it done?

2004-03-18 Thread Svensson, B.A.T. (HKG)
Does PHP uses the same expression evaluation as in C/C++? This questions also consider expression with function that returns booleans, typical: if (false && my_bool_function()) Will my_bool_function() be evaluated or not in this case? -- PHP Windows Mailing List (http://www.php.net/)

[PHP-WIN] Re: Expression evaluation - how is it done?

2004-03-18 Thread DvDmanDT
It's done the lazy way.. If the whole expression can't return true, it's not nessecary to evaluate the right side of the && operator.. In other words, my_bool_function will never be called... See the manual for more.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "B.A.T. Sven

Re: [PHP-WIN] Re: Expression evaluation - how is it done?

2004-03-18 Thread Svensson, B.A.T. (HKG)
I asking because i read through the section about expression, but it was just wining about that $a == 5 if $a = $b and $b = 5, and other trivial matters. So if you could point me to the manual section you are referring to, I would appreciate it. Anyhow, I take your answer that PHP is doing a left-

RE: [PHP-WIN] copying MS SQL tables

2004-03-18 Thread Gerardo Rojas
OK, i'm able to copy over data using bcp, how do I take this file and create a table into another remote db server. It fails on the name (of the table) because it doesn't exist yet. bcp $tablename in $sourcefile $myargs -- Gerardo S. Rojas mailto: [EMAIL PROTECTED] -Original Message-

php-windows Digest 18 Mar 2004 14:55:56 -0000 Issue 2171

2004-03-18 Thread php-windows-digest-help
php-windows Digest 18 Mar 2004 14:55:56 - Issue 2171 Topics (messages 23176 through 23182): An old dog, with a new trick.. 23176 by: Felipe Eduardo Ortiz López Domain name 23177 by: Sudeep Sarath 23178 by: DvDmanDT Expression evaluation - how is it done? 231

RE: [PHP-WIN] copying MS SQL tables

2004-03-18 Thread Svensson, B.A.T. (HKG)
You need isql.exe to create a table on the remote machine if you want to do everything in a script, alternatively you can create the table with php and mssql_query(). On Thu, 2004-03-18 at 15:55, Gerardo Rojas wrote: > OK, i'm able to copy over data using bcp, how do I take this file and create a

RE: [PHP-WIN] Domain name

2004-03-18 Thread jon roig
The simple answer is something like "it depends on what you're trying to do." One solution might be to have php make a change to the apache virtual hosts file and create the appropriate directories on the server. One method that we use is for a single page being listed as blahblah.thedomain.com.

Re: [PHP-WIN] Re: Expression evaluation - how is it done?

2004-03-18 Thread Justin Patrin
BTW, that's called Short Circuiting. B.A.T. Svensson wrote: I asking because i read through the section about expression, but it was just wining about that $a == 5 if $a = $b and $b = 5, and other trivial matters. So if you could point me to the manual section you are referring to, I would apprec

RE: [PHP-WIN] OK, ahí voy...

2004-03-18 Thread Svensson, B.A.T. (HKG)
> My first question: Has PHP some editor or IDE kinda HTML has? > I'll be clear: for instance i can work with FrontPage, or text > edito to generate the HTML files, it does exist something > similar for PHP? Yeah, your fingers. What you asking for is a auto generator of PHP code, and such might e

[PHP-WIN] php_pspell.dll Help!

2004-03-18 Thread Marcus Barici
Hello, I have been fighting with this for three days now. My system is set up with the following: PHP v.4.3.4 c:\windows\system32\aspell-15.dll c:\windows\system32\pspell-15.dll c:\windows\system32\php_pspell.dll (also in the c:\php4\) aspell-en 3.50 (with dictionaries in c:\aspell\dict I am r

RE: [PHP-WIN] An old dog, with a new trick..

2004-03-18 Thread jon roig
Hola... One good thing to check out is ADODB, a database abstraction layer which lets you query all kinds of different db servers in one, uniform way. Check it out here: http://php.weblogs.com/ADODB -- jon -Original Message- From: Felipe Eduardo Ortiz López [mailto:[EMAIL PROTEC

[PHP-WIN] Re: An old dog, with a new trick..

2004-03-18 Thread Justin Patrin
If you're just starting out, this is a great time to learn PEAR DB as it can help you a lot in the future. In fact, PEAR is a great place to look for lots of code to do all sorts of things. http://pear.php.net http://pear.php.net/package/DB Felipe eduardo ortiz lópez wrote: Bueno, héme aquí, un

[PHP-WIN] OK, ahí voy...

2004-03-18 Thread Felipe Eduardo Ortiz López
Mi primera pregunta: ¿PHP tiene algún editor o IDE tipo las que tiene HTML? Clarifico; por ejemplo puedo trabajar con FrontPage, o el editor de textos, para generar los archivos HTML, ¿existe algo así para PHP? My first question: Has PHP some editor or IDE kinda HTML has? I'll be clear: for insta

[PHP-WIN] Re: OK, ahí voy...

2004-03-18 Thread user
Felipe eduardo ortiz lópez wrote: Mi primera pregunta: ¿PHP tiene algún editor o IDE tipo las que tiene HTML? Clarifico; por ejemplo puedo trabajar con FrontPage, o el editor de textos, para generar los archivos HTML, ¿existe algo así para PHP? My first question: Has PHP some editor or IDE kinda HT