Re: [PHP] newbie html forms primer help

2002-04-10 Thread Erik Price
On Wednesday, April 10, 2002, at 04:12 PM, ROBERT MCPEAK wrote: > I need some help with html forms. I primer on html forms and variables > is much needed. Anybody have some code snipets to share? Sure. I was just working on a little code snippet that grabs all the GET variables (you could

RE: [PHP] SESSIONS in javascript

2002-04-10 Thread Matthew Luchak
if you use SID you can get the session out of the url. Matthew Luchak Webmaster Kaydara Inc. [EMAIL PROTECTED] -Original Message- From: Morten Nielsen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 4:31 PM To: [EMAIL PROTECTED] Subject: [PHP]

[PHP] Re: How to send an email to everone listed in a file

2002-04-10 Thread Hugh Bothwell
"Anthony Rodriguez" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > (1) You're going to overload the outgoing mail server. I've done it. Now i > use a newsletter-type mailing list. Sure, if you have more than a few hundred emails this is probably the way to go

[PHP] OO-PHP Style question

2002-04-10 Thread Alok K. Dhir
(sent this to the wrong list the first time - apologies in advance) Given an app with the following overall class structure: Base.class { function Base() { ##initialize stuff } } A.class extends Base { var $var; var $b; function A() {

[PHP] is_ref?

2002-04-10 Thread Alok K. Dhir
Is there a way to check whether a given variable is a reference in php? I.e. $foo="hi"; $bar=&$foo; if (is_ref($bar)) echo "ref"; Corollary question: What happens to references after a cycle of being stored in and retrieved from the $_SESSION? Do I get copies now, or

[PHP] Re: need help with your code?

2002-04-10 Thread Christopher J. Crane
Ok time out...the problem was simple I had each of the functions one it's own line because it was simple to see. When I add code to the functions then I do make it as indicated and easier to read. The problem was that I did not realize the 80 character columns width. I apologize but did not think

Re: [PHP] XML HELP

2002-04-10 Thread Christopher J. Crane
Wow thanks so muchthis was a great help. "Analysis & Solutions" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hey Christopher: > > > function CharacterHandler($Parser, $Line, $StockStuff) { > > array_push($StockStuff, $Line); > > print "$Line\n"; > > }

[PHP] templates and listbox

2002-04-10 Thread Javier
Does templates (eg php-templates or Smarty) fill automatically listboxes? Or do I need to code it? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] templates and listbox

2002-04-10 Thread Javier
Does templates (eg php-templates or Smarty) fill automatically listboxes? Or do I need to code it? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] test

2002-04-10 Thread Daniel Geldres Castro
=== Saludos, Daniel Geldres Castro mail: [EMAIL PROTECTED] Telf Trab.: 511-447-7600 Telf Casa.: 511-251-3584 ICQ 72211218 MSN [EMAIL PROTECTED] Yahoo ID danielgeldres === SuSE Linux fácil, independiente, estable, seguro! -- PHP General M

[PHP] String?

2002-04-10 Thread jas
Is this a correct string to show only files that look like so: *_.jpg if ($file_names != "." && $file_names !=".." && ereg('(^[0-1231]$).jpg$',$file_name)) Any help would be great. Jas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] SESSIONS in javascript

2002-04-10 Thread alfonso orion x allende
might be a solution: don't use a javascript includepage, instead use the "inline code" method in a php.includefile, something like this include "javascript.inc"; where the javascript.inc (js.inc, js.php, javascript.php - your name, your choice) contains