[PHP] Running a script without flowing

2001-03-29 Thread Jonathan Chum
I'm not sure of the exact term, but what I want todo is run a function in a loop so that it doesn't wait for the function to finish and goes ahead and executes the next in loop. For example: ? for($i=1; $i5; $i++) { run_this(); } ? run_this may contain some long mathematical computations

[PHP] Recursive Threading

2002-01-03 Thread Jonathan Chum
I'm using recursive threading for a simple thread board script, but the problem is the # of queries needed to execute. That is, once given the main thread post, it'll have to find all the posts where the parentID matches the current ID, then requery again for each of the post. So I'm trying to

[PHP] NNTP Indexing

2002-01-15 Thread Jonathan Chum
I'm in dire need of suggestions for reconstruction of a database that contains USENET posts from a few groups on the server. This is the structure: CREATE TABLE /*!32300 IF NOT EXISTS*/ nntp ( pid mediumint(10) NOT NULL auto_increment, aid mediumint(10) NOT NULL DEFAULT '0' , from_name

Re: [PHP] search engine submission

2001-09-24 Thread Jonathan Chum
I believe that he wants an automated URL submission script. I've seen one that just been released like a week or two ago. It's good script from what I remember looking at the code with success page verification. If I can find the URL, I'll be sure to reply. I can't seem to find it my IE's

[PHP] Re: PHP Bulletin Boards...how they work.

2001-12-03 Thread Jonathan Chum
on the complexity of the board, that is if you want to consider the ability to create more than one board for a forum or be able to categorize it. These are really features, and doesn't represent the core system of any board. Regards, Jonathan Chum http://www.flaap.com Flash resources Anthony Ritter

[PHP] Re: Beginner's books?

2001-09-13 Thread Jonathan Chum
Core PHP Programming by Leon Atkins is an excellent book IMHO. Each function comes with a clear cut example how to use it. I have the first edition and right now, I'm considering to purchase the second edition since it covers PHP 4. That was my first PHP book when I started PHP. Lrw [EMAIL

[PHP] Push Images When HTML is already outputted.

2001-09-13 Thread Jonathan Chum
In PERL, there is a way to push images even though the HTML is already outputted to the screen, therefore changing images, live. . . . An example would be this particular script: http://www.donerightscripts.com/cgi-bin/demos/sitesubmit/sitesubmitter.cgi I am wondering how could this be done

[PHP] Re: Push Images When HTML is already outputted.

2001-09-13 Thread Jonathan Chum
Scratch the message. :) I was thinking of something totally different :) Jonathan Chum [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... In PERL, there is a way to push images even though the HTML is already outputted to the screen, therefore changin

[PHP] Forking in PHP

2001-09-13 Thread Jonathan Chum
this, similar to the forking in PERL. Any help would be great! Regards, Jonathan Chum A I S M e d i a , I n c . We Build eBusinesses 3541 Habersham at Northlake, Building E Tucker, GA 30084 Tel: 678.382.2247 / Fax: 678.382.2471 http

[PHP] Left Join Across Two Databases

2001-04-04 Thread Jonathan Chum
I have one table on one database and another table on another database. I want to perform a left join these two tables in MySQL. I don't think it's possible, but cuious if there is a "method" that can be coded in PHP to do this? If you think there's is a problem with my schema, well the boss

[PHP] Mass Mailing

2002-12-21 Thread Jonathan Chum
An upcoming project I'm working and spec'ing out is a mass mailing application. Initially, I was looking at Mailman which was written in Python since it looks like it handles delivering emails efficiently without killing the server. We have 1 client able to send 110,000 emails at 6.5K avg per week

RE: [PHP] Mass Mailing

2002-12-21 Thread Jonathan Chum
instances to fork off which is ineffcient. -Original Message- From: Gil Disatnik [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 21, 2002 6:46 PM To: Jonathan Chum Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Mass Mailing I have written a few useful php functions that put the email addresses

Re: [PHP] Mass Mailing

2002-12-21 Thread Jonathan Chum
-- me - Original Message - From: Jonathan Chum [EMAIL PROTECTED] To: 'Gil Disatnik' [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, December 22, 2002 2:03 AM Subject: RE: [PHP] Mass Mailing Yea, I'd like to see that. How many people are on your lists if you don't mind m

[PHP] Re: Mass Mailing

2002-12-22 Thread Jonathan Chum
Thanks Manuel, Manuel Lemos [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, On 12/21/2002 08:10 PM, Jonathan Chum wrote: An upcoming project I'm working and spec'ing out is a mass mailing application. Initially, I was looking at Mailm

[PHP] Problem with Search Engine Friendly URLs under PHP Windows XP

2003-01-11 Thread Jonathan Chum
I'm following various tutorials online that uses the PATH_INFO to do this, however Apache isn't playing nicely. I read a few documents that Apache has a built in look back feature, but a query on google on lead me back to a few articles that I just read so I'm assuming this feature is made up in

Re: [PHP] Problem with Search Engine Friendly URLs under PHP Windows XP

2003-01-11 Thread Jonathan Chum
doesn't work under windows... Jonathan Chum wrote: I'm following various tutorials online that uses the PATH_INFO to do this, however Apache isn't playing nicely. I read a few documents that Apache has a built in look back feature, but a query on google on lead me back to a few articles that I

[PHP] SMTP, mail() and piping directly into Sendmail, which is better?

2003-01-22 Thread Jonathan Chum
I'm working on mass mailing list application and doing my research on the part with the actual delivery of the message. I've been using a Perl script called MojoMail which sends out blasts just fine and boasts that SMTP is the fastest way for delivery than with Sendmail using a module called

[PHP] Re: Mass Mailing

2003-01-22 Thread Jonathan Chum
Hi, I was surfing through google's archive, and some reason my USENET reader didn't catch this reply, so here goes. . .(my comments are embedded below) Manuel Lemos [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello, On 12/22/2002 02:52 PM, Jonat

[PHP] Re: SMTP, mail() and piping directly into Sendmail, which is better?

2003-01-22 Thread Jonathan Chum
Ignore this post, I got my answers from the archives :) Jonathan Chum [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I'm working on mass mailing list application and doing my research on the part with the actual delivery of the message. I've been usin

Re: [PHP] 3 tier web development

2003-02-08 Thread Jonathan Chum
I use Smarty for seperate PHP logic and template logic. For database abstraction, I use AdoDB. Not much a fan of Pear Adodb was pretty faithful when I ported my MySQL app to PostGreSQL. Hardik Doshi [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Ok so for

[PHP] MIME Decoding Class

2003-02-08 Thread Jonathan Chum
I'm looking through Google for MIME decoding classes, one developed by Richard Heyes used in Pear and a few others. What I'm curious is how complete are these classes or if there is one you recommend that completely decodes emails from Outlook, Hotmail, Eudora, etc. based emails. I've looked at

[PHP] Open Source Mailing Lists

2002-10-05 Thread Jonathan Chum
Hi Guys, I'm looking for open source mailing lists. I'm aware of hotscripts.com and the mailing lists listed there was not what I had in mind. What I'm looking for is possible some code snippets or applications where the scripts handles much like Mailman in which one person can post a new

[PHP] Re: PHP Trouble-Ticket-Systems?

2002-12-01 Thread Jonathan Chum
I actually spent all day last Wednesday for looking for such a tool to integrate into a web hosting control panel we've built, but there really isn't a good one out there. PerlDesk is a free one that is template based, yet it's lacking a few features. At work, we use Response Tracker v2 (RT) which

[PHP] XML-RPC, is this the best approach for something like this?

2002-12-01 Thread Jonathan Chum
Hi guys! I'm wrapping up a web hosting control panel written in PHP that fills up a queue with commands such as create web hosting account, or change password. A Perl based CRON job on each server will query the database trying to determine what tasks it needs to execute. The problem however is

[PHP] OOP, Out of Scope Issue

2004-11-07 Thread Jonathan Chum
I have a class called FrontEnd which extends a TemplateManager class. The purpose of the TemplateManager class is to initate Smarty. So my FrontEnd constructor looks like this: function FrontEnd() { $db = new DatabaseConnection(); $this-db = $db-initDatabase(); $this-sm =

Re: [PHP] OOP, Out of Scope Issue

2004-11-07 Thread Jonathan Chum
Ahmed -Original Message- From: Jonathan Chum [mailto:[EMAIL PROTECTED] Sent: Monday, November 08, 2004 9:52 AM To: [EMAIL PROTECTED] Subject: [PHP] OOP, Out of Scope Issue I have a class called FrontEnd which extends a TemplateManager class. The purpose of the TemplateManager class