Re: [PHP] exec, backtics and co.

2001-06-20 Thread mailing_list
I have a problem with a php script which contains an exec (identical problem with backtics and similar operators) some programs are simply not executed for example, having a simple 'hello world' program in c++ will work fine, but having a program that writes 'hello world' to a file won't

[PHP] PHP3

2001-06-20 Thread William Poarch
Hi, Does Select a.field, b.field from table_one a, table_two b where a.id = b.id work in PHP3/MySQL 3.22.32? Client's running PHP3, and I'm on 4. thanks. - - - - - - - - - - Scott Poarch www.globalhost.com - - - - - - - - - - -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Problem starting session

2001-06-20 Thread Jonathan Sharp
Check your php.ini file, you should set the temp dir setting to semething like C:\tmp and make sure that C:\tmp exists and that whatever user your site is running as in IIS is set to have read/write access... /tmp\sess is for unix...it's not a valid path (/tmp is what is defined as the

Re: [PHP] protect source code

2001-06-20 Thread Rasmus Lerdorf
I am on a project and the issue that struck me is how to protect my source codes which is in human readable form. There isn't any way for me to protect my database and the only way that I had found out is to use the PHP encoder provided by Zend.com to encode the source code. However, the

[PHP] Your Internet Education!

2001-06-20 Thread Noel Hadfield
Take our course in computers and the Internet; and then we'll show you how to build a business with your new skills. Just hit: mailto:[EMAIL PROTECTED]?Subject=Education To be removed from this list, hit: mailto:[EMAIL PROTECTED]?Subject=Remove -- PHP General Mailing List

RE: [PHP] Code check please

2001-06-20 Thread Jason Murray
2. Your SQL is a bit out of whack. The SET clause is used for UPDATEs, not INSERTs. Instead, try: $sql = INSERT INTO tabell (fornamn, efternamn, email) VALUES ( . '$fornamn', '$efternamn', '$email');; MySQL actually lets you use SET for INSERTS, though. Jason --

RE: [PHP] Calculate # of minutes during working hours between two dates

2001-06-20 Thread Jason Murray
You'll also need to calculate: * the number of minutes from the start time to 17:30 * the number of minutes from the 8:00 to the end time * the number of weekends between the times -- Jason Murray [EMAIL PROTECTED] Web Developer, Melbourne IT What'll Scorpy use wormhole technology for?

RE: [PHP] automatic page view

2001-06-20 Thread Maxim Maletsky
one table: id usernamepassword Then, when login was successful determine his company by the ID returned. Redirect. Cheers, Maxim Maletsky -Original Message- From: Taline Makssabo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 20, 2001 12:07 AM To: [EMAIL PROTECTED]

[PHP] Why do constants behave like this??

2001-06-20 Thread Geoff Caplan
Hi folks I define a constant in a config file: define( 'VARIABLE_CLASS', 'myclass' ) ; Can any kind person explain why this fails with the error Cannot instantiate non-existent class new VARIABLE_CLASS ; While this works: $class = VARIABLE_CLASS ; new $class ; Must be something about

[PHP] PHP class

2001-06-20 Thread Martín Marqués
Can we dream of having destructors in class definition some day when programing in PHP? Saludos... ;-) -- Cualquiera administra un NT. Ese es el problema, que cualquiera administre. - Martin Marques |

<    1   2   3