[PHP] Enable exec() and system() for a directory only

2004-10-18 Thread David Garcia Aristegui
Hello, newbie question: how can i enable exec() and system() for a certain directory only? Thank you in advanced. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Book: Web Database Applications with PHP and MySQL

2002-04-30 Thread David Garcia Aristegui
I like it, i think it's the best for beguinners, and it's fine try to work withreal examples... At 10:41 30/04/2002 +0100, Mark Harwood wrote: Hi All, Has anyone got a copy of this book yet? If so, what do you think of it? Mark -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Newbie Book Database Question

2002-04-25 Thread David Garcia Aristegui
Try PHP and MySQL Web Development, by Luke Welling and Laura Thompson; only one thing, maybe you'll have troubles with the form variables, put this code at the beginning of all book examples foreach (array_merge($_POST,$_GET) as $key=$val) { global $$key; $$key=$val; } Code