Archive for the 'random linkage' Category

eZXMLRPC

Sunday, December 16th, 2001

zez.org: about code – in this case, about eZXMLRPC code

Plotting Along

Sunday, December 16th, 2001

Plotting Along (washingtonpost.com) : Writers such as Tom Clancy, Ken Follett, Mary Higgins Clark, Stephen Coonts, Robin Cook, Faye Kellerman, V.C. Andrews, Jonathan Kellerman, Dean Koontz and Dale Brown are remarkable for a rhythmless beat, and a straightforward approach to writing that ranks zippy, superinventive plot first, stating the obvious second, concrete details third, and […]

PHPBuilder.com – Checking Data

Friday, December 14th, 2001

PHPBuilder.com – Checking Data

PHPBuilder.com – Best Practices: PHP

Friday, December 14th, 2001

PHPBuilder.com – Best Practices: PHP Coding Style

phphelp.com – Running PHP Scripts

Friday, December 14th, 2001

phphelp.com – Running PHP Scripts Securely with a script wrapper

“Force” the browser to save a file

Wednesday, December 12th, 2001

Dan’s Web Tips: “How Do I Force…?” : If you’re sending data files of some sort which the user ought to be saving instead of viewing in his/her browser, the best MIME type to use is application/octet-stream; this will usually cause a “save” dialog box to appear. Say you were sending the text of a […]

No PHP arrays in forms

Tuesday, December 11th, 2001

HTML 4.01 spec says that a name =”foo[]” is invalid: ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens (“-“), underscores (“_”), colons (“:”), and periods (“.”).

PHP: Manual: PHP and HTML

Tuesday, December 11th, 2001

PHP: Manual: PHP and HTML How do I create arrays in a HTML form? To get your form result sent as an array to your PHP script you name the input, select or textarea elements like this: <input name=”MyArray[]”> <input name=”MyArray[]”> <input name=”MyArray[]”> <input name=”MyArray[]”> Notice the square brackets after the variable name, that’s what […]

XML-RPC Message Builder – scottandrew

Tuesday, December 11th, 2001

XML-RPC Message Builder – scottandrew on Javascript/PHP/XML-RPC

Submit once

Monday, December 10th, 2001

FAQTs: Q. “How can is stop a user from pressing the submit button twice on a php/mysql data entry form?” A. Is can use an inline onclick style change.