Re: [PHP] Zend PHP Certification test

2004-10-17 Thread Daniel Kushner
Hi Rory, The passing score is not revealed. There is only a pass/fail on the test. Best, Daniel Kushner On Sun, 17 Oct 2004 19:08:32 +0100, Rory Browne <[EMAIL PROTECTED]> wrote: > I've been looking all over the Zend Cert site, trying to find the > passing rate, ie how many

Re: [PHP] Zend PHP Certification test

2004-09-29 Thread Daniel Kushner
I have heard numerous times and hope it will increase the quality of PHP development in the market. Best, Daniel Kushner __ Director of Education Zend Technologies Ltd. [EMAIL PROTECTED] http://www.zend.com

Re: [PHP] External Files (take 2)

2004-09-20 Thread Daniel Kushner
Hi Gary, Look up http://php.net/include It's just like "copy and pasting" the code in the external file in the one your including it into. Best, Daniel Kushner __ Director of Education Zend Technologies Ltd. [EMAIL PROTECTED] http

RE: [PHP] Preventing the "hijacking" of pictures

2003-02-27 Thread Daniel Kushner
Hi Merlin, What you are describing is named Hot Linking. A quick search on Google gave me this: http://www.htmlbasix.com/disablehotlinking.shtml Regards, Daniel Kushner Need PHP Training? http://www.nyphp.org/training.php > -Origi

RE: [PHP] Re: Images : Store in dB or disk?

2003-01-16 Thread Daniel Kushner
You must remember that Images are embedded in HTML using the tag. Each image displayed on a Webpage is a result of a seperate HTTP request to the server; i.e. a PHP call in this case. Unless you are cache the SQL result, at least one query is needed per image. Regards, Daniel Kushner

RE: [PHP] MySQL Query - Not PHP Specific

2003-01-15 Thread Daniel Kushner
http://www.mysql.com/documentation/mysql/bychapter/manual_Tutorial.html#Work ing_with_NULL http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#Con trol_flow_functions Regards, Daniel Kushner _ Need hosting? http

RE: [PHP] Get the date of the last sunday

2003-01-15 Thread Daniel Kushner
http://www.php.net/manual/en/function.strtotime.php strtotime ("last Sunday"); Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us -Original Message- From: Renaldo De Silva [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: [PHP] Some help on PHP & HTML please

2003-01-11 Thread Daniel Kushner
Hi Denis, You should close the PHP tag (?>) before outputing HTML. Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us -Original Message- From: Denis L. Menezes [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 11, 2003 8

RE: [PHP] Header information ...

2003-01-10 Thread Daniel Kushner
t() should directly follow. e.g.: Header("Location: main.php"); exit(); Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us > -Original Message- > From: Anders Mellstrom [mailto:[EMAIL PROTECTED]] > Sent: Frid

RE: [PHP] Cheap Hosting

2002-12-26 Thread Daniel Kushner
Hi Stephen, nyphp.org has a hosting service that you might find interesting. Take a look at: http://thehostingcompany.us Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us -Original Message- From: Stephen [mailto:[EMAIL

RE: [PHP] forcing .html pages to go through the PHP parser

2002-10-28 Thread Daniel Kushner
AddType application/x-httpd-php .php .html (in the httpd.conf file) Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us > -Original Message- > From: John Meyer [mailto:johnmeyer_1978@;yahoo.com] > Sent: Monday, October

RE: [PHP] Apache authentication and adding a user.

2002-10-28 Thread Daniel Kushner
Try this: http://phpclasses.websapp.com/browse.html/package/387.html Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us > -Original Message- > From: John Meyer [mailto:johnmeyer_1978@;yahoo.com] > Sent: Monday, October

RE: [PHP] =.jpg from another URL with PHP=

2002-10-11 Thread Daniel Kushner
Save your first bit of code in a file (e.g.: image.php) Your HTML file should look like this: ... . Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us -Original Message- From: Anthony Ritter [mailto:[EMAIL

RE: [PHP] Undefined variable

2002-10-09 Thread Daniel Kushner
Try using $_POST['name'] or $_GET['name']. E.g.: Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us -Original Message- From: Muhammad Khairuzzaman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October

RE: [PHP] html input and php (newbie)

2002-09-24 Thread Daniel Kushner
Hi Anna, Your REGISTER_GLOBALS is most probably set to OFF (see php.ini file). Try using the special $_POST array created by PHP: if ($_POST['submit'] == "click"){ echo "Hello, $_POST[UserName]"; } If your form was using the GET method you would need the

RE: [PHP] FW: Cannot Redeclare?

2002-09-22 Thread Daniel Kushner
Typo: include_one() === include_once() -Original Message- From: Daniel Kushner [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 22, 2002 11:06 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] FW: Cannot Redeclare? When including the file funcs.php use include_one(). Regards, Daniel

RE: [PHP] FW: Cannot Redeclare?

2002-09-22 Thread Daniel Kushner
When including the file funcs.php use include_one(). Regards, Daniel Kushner Need hosting? http://thehostingcompany.us -Original Message- From: Stephen Craton [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 22, 2002 10:56 PM To: [EMAIL

RE: [PHP] What does this error mean

2002-09-22 Thread Daniel Kushner
Hi Randy, It means that you are calling the function without the right amount of parameters. The function mysql_query expects at least 1 (one) paramter: the query String. http://www.php.net/manual/en/function.mysql-query.php Regards, Daniel Kushner Need

RE: [PHP] Dynamic HTML Email

2002-09-20 Thread Daniel Kushner
Try this class: http://phpclasses.websapp.com/browse.html/package/9.html Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us > -Original Message- > From: Mike Dunlop [mailto:[EMAIL PROTECTED]] > Sent: Friday, September

RE: [PHP] How to generate Excel files with PHP

2002-09-19 Thread Daniel Kushner
Found this on phpclasses: http://phpclasses.websapp.com/browse.html/package/86.html Regards, Daniel Kushner _ Need hosting? http://thehostingcompany.us > -Original Message- > From: Matti Simperi [mailto:[EMAIL PROTECTED]] > Sent:

RE: [PHP] +=

2002-08-19 Thread Daniel Kushner
$string = 'Hello'; $string .= ' World'; Regards, Daniel Kushner _ Need hosting? http://www.thehostingcompany.us > -Original Message- > From: Alexander Ross [mailto:[EMAIL PROTECTED]] > Sent: Monday, August

RE: [PHP] Pls Help: Quickie: set_time_limit

2002-08-13 Thread Daniel Kushner
set_time_limit(0); mysql_select_db("files", $db); Daniel Kushner [EMAIL PROTECTED] __ Need hosting? http://www.thehostingcompany.us/ > -Original Message- > From: Shane [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, Augu

RE: [PHP] relocation

2002-08-13 Thread Daniel Kushner
case "todo": header('Location: index.php?var1=&var2='); exit; case 'aaa': header('Location: index.php?var1=asddt&var2=ppapp'); exit; Regards, Daniel Kushner [EMAIL PROTECTED] _

RE: [PHP] exec / mkdir question

2002-08-12 Thread Daniel Kushner
Try using the mkdir function: http://www.php.net/manual/en/function.mkdir.php Daniel Kushner [EMAIL PROTECTED] Need hosting? http://www.thehostingcompany.us/ > -Original Message- > From: Javier Montserat [mailto:[EMAIL PROTECTED]] > Sen

RE: [PHP] Include problems

2002-08-03 Thread Daniel Kushner
include 'inc/test.inc' will work fine if you add your root directory to your include_path (in the c:\winnt\php.ini file). Daniel Kushner [EMAIL PROTECTED] Need hosting? http://www.TheHostingCompany.us/ > -Original Message- > From: Scott [mailto:[EMAIL PROTECTED]]

RE: [PHP] Need help to choose hosting!

2002-08-02 Thread Daniel Kushner
You should check out The Hosting Company http://www.thehostingcompany.us/ The PHP config comes with many flavors: http://www.thehostingcompany.us/info.php --Daniel > -Original Message- > From: Mantas Kriauciunas [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 02, 2002 2:31 AM > To: [

[PHP] Temporary Mirror for PHP 4.2.2 Binaries

2002-07-22 Thread Daniel Kushner
Hi PHPers, To help along with the new PHP download crises I have added a temporary mirror: http://www.thehostingcompany.us/php/ Regards, Daniel Kushner -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Amazon Web Service implemented in PHP

2002-07-21 Thread Daniel Kushner
http://www.amazonlite.com/ --Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] New York PHP Presents: Implementing an Object-based Web Framework in PHP

2002-07-17 Thread Daniel Kushner
Posted by Daniel Kushner (on behalf of Hans Zaunere) New York PHP Presents: "Implementing an Object-based Web Framework in PHP" NYPHP's monthly meeting is a week away (7/24), and after an informal networking event last month, we're excited to offer what certainly will

[PHP] HTTP_RAW_POST_VARS

2002-06-04 Thread Daniel Kushner
This variable isn't getting populated! Environment: PHP 4.1.2 Linux Apache always_populate_raw_post_data is on (php.ini). Any ideas? --Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Training in NYC

2002-04-27 Thread Daniel Kushner
Hi Group, I would like to remind any beginner PHPers that live near (or in) New York City that the next PHP Training will take place on May 8th - 9th. More information at http://www.websapp.com/training.php Best regards, Daniel Kushner -- PHP General Mailing List (http://www.php.net/) To

[PHP] PHP Training in NYC

2002-04-22 Thread Daniel Kushner
Hi , I am please to announce that the next PHP Training will take place on May 8th - 9th. More information may be found at http://www.websapp.com/training.php Regards, Daniel Kushner -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Training is New York

2002-04-12 Thread Daniel Kushner
LAST DAY TO REGISTER http://websapp.com/training.php --Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Pache .htpasswd Encryption

2002-03-12 Thread Daniel Kushner
http://www.phpclasses.org/browse.html/package/387.html > -Original Message- > From: Chris Burwell [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 11, 2002 3:46 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Pache .htpasswd Encryption > > > I am trying to make a script that adds users to a A

RE: [PHP] finding include path

2002-03-08 Thread Daniel Kushner
ini_get('include_path') > -Original Message- > From: Nick Wilson [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 08, 2002 11:06 AM > To: php-general > Subject: [PHP] finding include path > > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi > Is there an easy way to determine t

RE: [PHP] Functions

2002-02-13 Thread Daniel Kushner
http://www.php.net/manual/en/language.variables.predefined.php http://www.php.net/manual/en/funcref.php > -Original Message- > From: Jason Whitaker [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 13, 2002 4:15 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Functions > > > Is there a

RE: [PHP] How do I send a POST request?

2002-02-12 Thread Daniel Kushner
http://phpclasses.upperdesign.com/browse.html/package/375/ > -Original Message- > From: Erik Price [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 12, 2002 3:21 PM > To: LaserJetter > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] How do I send a POST request? > > > > On Tuesday, Febr

RE: [PHP] ereg-digits only...

2002-02-12 Thread Daniel Kushner
That wouldn't work! 1) You meant to write: if (((int)$string==$string) && ($string>0)) 2) (int)'5a' == 5, so this formula would result is 5a == 5! --Daniel > -Original Message- > From: val petruchek [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, February 12, 2002 6:22 AM > To: [EMAIL PRO

RE: [PHP] fsockopen - whats the syntax of POST?

2001-11-15 Thread Daniel Kushner
Hi Stefan, Maybe this HTTPPost class will help you. http://phpclasses.upperdesign.com/browse.html/package/375 --Daniel > -Original Message- > From: Stefan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 15, 2001 8:53 AM > To: PHP > Subject: [PHP] fsockopen - whats the syntax of PO

RE: [PHP] Url Length Limitations?

2001-11-12 Thread Daniel Kushner
You can try this class for POSTing: http://phpclasses.upperdesign.com/browse.html/package/375 --Daniel > -Original Message- > From: Valentin V. Petruchek [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 12, 2001 7:05 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Url Length Limitations

RE: [PHP] Deleting Array elements

2001-11-02 Thread Daniel Kushner
Hi, Try out this class: http://www.websapp.com/classes/LineRemover/ --Daniel > -Original Message- > From: HEW Staff [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 02, 2001 9:56 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Deleting Array elements > > > I'm looking for some code that