Re: [PHP] can I sandwich html docs with PHP

2002-03-01 Thread Michael Kimsal
t; Peter > I think you'll have to use url rewriting for this. Not as tight integration as mod_perl, but if you have to use it, that's probably your only option at this point. Good luck! Michael Kimsal http://www.phphelpdesk.com Taking the ? out of http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Upgrading PHP

2002-02-28 Thread Michael Kimsal
without having to recompile Apache again in the future. It's apparently a small performance hit, but I've not been able to notice any sizable decrease in performance on production servers we work with using the DSO system. Hope that helps. -- Michael Kimsal http

[PHP] Re: Array or SQL?

2002-02-28 Thread michael kimsal
ndex. It'll handle multiple words in a phrase, and filter out stop words, etc. It's pretty handy, and can return 'relevance', although it won't be '# of times word occured' as you're looking for. Contact me if you want more info. Michael Kimsal http://www.ph

[PHP] Re: Login to account

2002-02-26 Thread Michael Kimsal
too). If you're looking for a personal site, or learning, or a proof of concept, there are many good code examples and tutorials at places like zend.com and phpbuilder.com. (and weberdev.com if memory servers, right boaz?) :) Good luck. :) Michael Kimsal 734-480-9961 -- PHP Ge

[PHP] Re: GD - dynamic PNG generation

2002-02-25 Thread Michael Kimsal
Holy cow that's a big graphic. 20 seconds does sound a tad long, but might not be depending on the server and memory - what are the specs? What might possibly speed it up a bit is to create multiple small versions first (20 one line graphics, for example) and build them all together at the en

[PHP] Re: Email Verification

2002-02-24 Thread Michael Kimsal
Steven Walker wrote: > Does anybody know any good ways (or available code) for verifying email > addresses? > > Checking syntax is not enough.. I'd like to actually be able to test > whether the email address exists. Nothing is 100%, so don't exclude people because you can't verify them. The

[PHP] Re: Newbie on Sessions/Pages Management

2002-02-23 Thread Michael Kimsal
Alexander P. Javier wrote: > I'm very new to PHP, as a matter of fact, I never had any experience anything about >web-enabled applications development. I've been more into local Visual Basic and MS >SQL Serve devt. If there's any kind soul out there, please HLP > > The question

[PHP] Re: Help needed - need to access a value from DB into all pages

2002-02-21 Thread Michael Kimsal
Janet, I think you probably need to investigate the concept of sessions. You were a bit sketchy on details, but it sounds like this is what you want. If you'd like more help, post to the list, or contact me directly at [EMAIL PROTECTED] (aim:mgkimsal) Wg4- Cook wrote: > Hi there, > > I am st

[PHP] Re: Copyright

2002-02-19 Thread michael kimsal
Dani wrote: > Hi! > I have seen lots of webiste with a sign "[EMAIL PROTECTED] 2002" etc... > > if I would like to do that, do I have to register myself to a certain > company or.. I just put it on my website? Depending on what country you are in, it would probably help to register the informat

[PHP] Re: Logging Users In - What is the Best Way

2002-02-18 Thread Michael Kimsal
7;sessions'. "Then most importantly where do I get information on how to go about doing that?" You come to our PHP training class March 25 - 29. :) Michael Kimsal http://www.tapinternet.com/php PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP and HTTPS

2002-02-18 Thread Michael Kimsal
ffected. IE just won't work right with SSL if the web server isn't IIS. You pretty much have no choice but to live with it or move to IIS as a server platform. Michael Kimsal http://www.tapinternet.com/php 734-480-9961 aim:mgkimsal -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: building dynamic pdf files?

2002-02-17 Thread michael kimsal
Jeff D. Hamann wrote: > I'm currently working on a web based application (in php) and saw the power > of being able edit fields in the pdf document. I can see how to build the > pdf file by hand, but I have a few dozen forms (multiple pages of course) > that I wish I could scan in and have a rough

[PHP] Re: session password problems.

2002-02-17 Thread Michael Kimsal
Matthew Darcy wrote: > Hi, > > This script does NOT work. > > However if I change the sql function $sql_authorisation to > > $sql_authorisation = "SELECT * FROM account_details WHERE > account_name='$login_username' ); > > so that is only selects the username - it works. there for there is a

Re: [PHP] The ASP "application" object in PHP?

2002-02-16 Thread michael kimsal
Peter J. Schoenster wrote: > to all instances and sessions. It is for example very useful to track different users at the same time, or to send messages from one session to another, or the likes. > > Well it started from the above where some guy said this magic > could track u

Re: [PHP] The ASP "application" object in PHP?

2002-02-15 Thread michael kimsal
the 'session' object and the 'application' object are treated similarly from a programmatic standpoint but are pretty different underneath in terms of operation and purpose. Hope that helps. Michael Kimsal http://www.tapinternet.com/php PHP training courses 734-480-9961

[PHP] PHP phone consultations :)

2002-02-15 Thread michael kimsal
office) might not be able to sit down and chat for hours at a stretch gratis. :) Don't let that put you off calling if you've got questions - often times questions that can have you stumped are things that we (or others) have faced in the past and solved already. Michael Kimsal http

Re: [PHP] Re: The ASP "application" object in PHP?

2002-02-15 Thread Michael Kimsal
Erik Price wrote: > > On Friday, February 15, 2002, at 10:42 AM, Michael Kimsal wrote: > >> Remember, ASP is not a language, and PHP is. You're not programming >> "ASP" - you are most likely programming VBScript and your server >> environment giv

Re: [PHP] good practice

2002-02-15 Thread Michael Kimsal
Erik Price wrote: > > On Thursday, February 14, 2002, at 04:40 PM, Michael Kimsal wrote: > >> On that same topic, *why* do people name files with both .inc and >> .php? Your .inc file has PHP code in it, right? Why not just call it >> .php and >> spar

[PHP] Re: The ASP "application" object in PHP?

2002-02-15 Thread Michael Kimsal
the context of the PHP language. Hope that helps. P.S. This is the kind of stuf we go over in depth in our PHP training courses for people migrating from ASP and/or operating in dual-language mode. :) -- Michael Kimsal http://www.tapinternet.com/php PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] good practice

2002-02-14 Thread Michael Kimsal
J Smith wrote: > Also, if you're including a file named "CONFIG.inc" from the same directory > as the script itself, please, please tell me you have your web server set > up not to serve CONFIG.inc to the outside world. (i.e. you have a .htaccess > file or something to send DENY to a request fo

[PHP] PHP Training wishlist

2002-02-14 Thread Michael Kimsal
ny thoughts? (to see what we cover currently, visit http://www.tapinternet.com/php) I'd appreciate anyone's input. Thanks! Michael Kimsal http://www.tapinternet.com/php 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Massive amounts of data to SQL

2002-02-12 Thread Michael Kimsal
Liam Mackenzie wrote: > Hi everyone, > > I know this is a relatively simple question, but what would be the most efficient >way of entering the contents of a large form (nearly 400 fields) into a MySQL >database? Every day the form must be able > Please provide an example script that I can use

[PHP] Re: got some advice.... need to know the lingo

2002-02-10 Thread Michael Kimsal
Ben Turner wrote: > Hello everyone, > > I am working on converting a site from ASP to PHP and I was wondering if > their where any built in functions to perform screen scraping. In ASP, the > XML DOM is most commonly used to accomplish this. I am thinking that there > should be something to get

[PHP] Re: got some advice.... need to know the lingo

2002-02-10 Thread Michael Kimsal
Ben Turner wrote: > Hello everyone, > > I am working on converting a site from ASP to PHP and I was wondering if > their where any built in functions to perform screen scraping. In ASP, the > XML DOM is most commonly used to accomplish this. I am thinking that there > should be something to get

[PHP] Re: subject line in mail()

2002-02-10 Thread Michael Kimsal
Kunal Jhunjhunwala wrote: > Hey, > I'm trying to force a subject line on the reply email of a recieved email... > the recieved email is sent using the mail() function in php... can this be > done? I know i can do it using html by doing : > mailto:[EMAIL PROTECTED]?subject=subect comes here > > bu

[PHP] Re: Phatt MySQL entry

2002-02-10 Thread Michael Kimsal
Liam Mackenzie wrote: > Hi, > > I was wondering what you would do in this situation... > > I have a form, with 196 fields that I need entered into a database. > But the form and it's contents need to be changed every day, > and I need to store the old data in an archive so it can be accessed > a

[PHP] Re: mime emails

2002-02-10 Thread Michael Kimsal
Kunal Jhunjhunwala wrote: > hey.. > does anyone know of any good classes / functions for handling mime emails? i > am writing a mail checker, and was wondering if there are any pre-written > mime email handling classes out there... > thanks! > Regards, > Kunal Jhunjhunwala > > "Minds think with i

Re: [PHP] Regex function needed

2002-02-08 Thread Michael Kimsal
Bas Jobsen wrote: > Op donderdag 07 februari 2002 23:58, schreef Michael Kimsal: > >>Looking for a regex (preg or ereg) to remove >>all 1, 2 and 3 character words. >> > > $string="over deze regex loop ik nu al de hele dag en een uur te piekeren. '

[PHP] Regex function needed

2002-02-07 Thread Michael Kimsal
Looking for a regex (preg or ereg) to remove all 1, 2 and 3 character words. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Differences between PHP, ASP, JSP

2002-02-07 Thread Michael Kimsal
uts, some are faster at execution, some are better with memory, some have price benefits, but there's nothing from the list above that you can do with one that you can't do with another. Michael Kimsal http://www.tapinternet.com/php PHP Training Courses -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Caching in php?

2002-02-06 Thread Michael Kimsal
mance as well. Before investigating caching, make sure that your queries and indexes are optimized. Once that's done, yes, the PEAR cache system is a good place to start. :) Michael Kimsal http://www.tapinternet.com/php PHP Training Courses 734-480-9961 -- PHP General Mailing List

[PHP] Re: File Upload -- File Trailer Partial

2002-02-05 Thread Michael Kimsal
Richard Lynch wrote: > Please Cc: me -- I can't keep up with anything like the full volume of > PHP-General any more and have only lurked for quite some time :-( > I guess I'm seeking reassurance that: > > A) File upload not known to be broken > B) move_uploaded_file completely finishes and

[PHP] Re: PEAR IMAGICK [WAS-> RANT: Why doesn't PHP have built-in support for dynamic]

2002-02-04 Thread Michael Kimsal
Christian Stocker wrote: >>see (which is how I labelled it above) and what I'm capable of actually >>contributing. >>Doing C-code PHP extensions is beyond my capabilities, so I make do with >>what others contribute. Simply because something is opensource doesn't >>mean everyone has equal talent

[PHP] Re: PEAR IMAGICK [WAS-> RANT: Why doesn't PHP have built-in support for dynamic]

2002-02-03 Thread Michael Kimsal
>>> >>Someone seems to have started this, although I'm not sure why he's not >>going more object-based. >> >> >>http://pear.php.net/manual/en/packages.imagick.php >> >>I would prefer something like >> >>$i = new Imagick(); >>$i->read("file"); >> >>instead of >>$i= imagick_create(); >>imagick_read

[PHP] PEAR IMAGICK [WAS-> RANT: Why doesn't PHP have built-in support for dynamic]

2002-02-03 Thread Michael Kimsal
Weston Houghton wrote: > Anybody interested in working on a PEAR module to interface PHP with > something like ImageMagick directly? I would love to see it. Maybe if I am > unemployed long enough soon I can work on it myself. Not that I really want > that to happen... > > I think that might be t

Re: [PHP] Hi - newbie questions...

2002-01-31 Thread Michael Kimsal
Miles Thompson wrote: >> 3rd >> does php have application like asp?? > > > Well, PHP is essentially an application like asp in that it parses a > script which normally has a .php extension and either executes commands > embedded within it or echoes HTML. The output from a PHP script is > str

[PHP] Re: A New XML Architecture for PHP Developers

2002-01-31 Thread Michael Kimsal
n the booking form on our website at >http://www.kusala.com. > If you have any enquiries please contact us. For those of us who can't make it to England(!) could you either post a bit more about the technology (code examples, etc) to the site or here, or perhaps just email me

Re: [PHP] session data vs cookie data

2002-01-30 Thread Michael Kimsal
Maybe you haven't had this experience, but we've regularly seen AOL users get switched between IPs during the same session on our sites. They'd had to start over and relogin every 5-10 minutes sometimes under that method. Do you not get any complaints? Michael Kimsal Jerr

Re: [PHP] session data vs cookie data

2002-01-30 Thread Michael Kimsal
l the user if the IP changes? IPs can change during a user's session, so I wouldn't base the validity of the session solely based on IP. Michael Kimsal -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[PHP] Re: session data vs cookie data

2002-01-30 Thread Michael Kimsal
$logged_in > = 1" or something similar) is not stored in the cookie but rather on the > server. But I just want to confirm. > > I should mention that I have register_globals = off in php.ini (4.1.0 on > Linux). > Michael Kimsal http://www.tapinternet.com/php PHP Training C

[PHP] Re: One form - Two emails, I need some help please

2002-01-29 Thread Michael Kimsal
Edward R. Bailey wrote: if ($PHP_MAIL_FORM=true){ should probably be if ($PHP_MAIL_FORM==true){ Try that. Michael Kimsal http://www.tapinternet.com/php PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Re: php vs asp

2002-01-28 Thread Michael Kimsal
y tutorials won't be directly usable. Michael Kimsal http://www.tapinternet.com/php PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list admin

[PHP] Re: MySQL-PHP-RAQ4 dilemma!

2002-01-27 Thread Michael Kimsal
e options within RPM installation? > > Many thanks for any help. > > Regards, > > Greg Conway. > make a page with That'll give you the PHP internal information and you can see pretty quickly what's 'in' and what's 'not in'. Mic

Re: [PHP] Re: Only one value.

2002-01-27 Thread Michael Kimsal
Mark Charette wrote: >> > > Almost right. DISTINCT is not a SQL function: > > select distinct iName from tablename > > would be the correct syntax. > > Seems to work fine on every version of MySQL I've used for the past few years, and I believe SQL Server 6.5 and 7, if memory serves corr

[PHP] Re: Only one value.

2002-01-27 Thread Michael Kimsal
values where, Bob, Jan, Mike, James, Bob, James, James, Mike ... > > I would like to call: Bob, Jan, Mike, James ... Any Idenas > I suspect you mean the mysql field name is 'iName', not '$iname' ($iName being the PHP variable name). try select distinct(iName) from

[PHP] Re: CGI vs. ISAPI

2002-01-27 Thread Michael Kimsal
GI. If you're an experienced C coder under Windows, jump in and try to help debug and patch it, otherwise just stick with CGI. Michael Kimsal http://www.tapinternet.com/php/ PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL P

Re: [PHP] Re: getting a LAMP job in this economy

2002-01-26 Thread michael kimsal
/HER may not be for us. I've come across this more times than I care to recall. And yes, our recommendations are loaded towards what's best for us, no doubt, but we generally have price on our side to start with (lower or no licensing fees) and a satisfied clients who've 'taken the

[PHP] Re: getting a LAMP job in this economy

2002-01-26 Thread michael kimsal
f > this will become true. Anyway, I am afraid that part of it will become > true as advertised. If you want to stick with LAMP/WAMP, you'd better > check it out to see if you can developed what will be in demand. Here > some buzzwords to pay more attention: Web services, SOAP, WSD

[PHP] Re: Hints & Feedback

2002-01-26 Thread Michael Kimsal
Philip J. Newman wrote: > I know this isn't the right place to add this, but can someone check this out ... > > http://www.philipsdomain.com/hyperlinks/search.php > > ... and gimme some tips of what I could do ... What are you asking for? -- PHP General Mailing List (http://www.php.net/)

[PHP] Re: Passing objects

2002-01-26 Thread Michael Kimsal
want to use that object in. Good luck... -------- Michael Kimsal http://www.tapinternet.com/php/ PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Variables Limit

2002-01-26 Thread Michael Kimsal
rst"] $name["last"] and so on... I'd think memory usage would be about the same, but if there was some limit on the number of discrete simultaneous variable names, this should get around that. Michael Kimsal http://www.tapinternet.com/php/ PHP Training Courses 734-480-9961

Re: [PHP] Classes for PUP & MySQL in Southern California

2002-01-25 Thread Michael Kimsal
on beginning basics and progress quickly after that for an entire week. I can promise you you would get proficient quickly and not be bored. :) Best of luck. Michael Kimsal http://www.tapinternet.com/php/ 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Re: getting a LAMP job in this economy

2002-01-25 Thread Michael Kimsal
use it's often $5-$10/month difference for comparable ASP or LAMP setups. The difference comes in, imo, in upgrading to full server(s). You've got the one time hit, plus the cost of PCAnywhere or something (you could live with VNC I guess) to do remote admin, plus the security tra

Re: [PHP] Re: getting a LAMP job in this economy

2002-01-24 Thread michael kimsal
would demand) so you're stuck with anecdotes - but there are hundreds of thousands of anecdotes of LAMP stability to choose from - I've got several if you want them. :) In the end it'll come down to religion and a price/performance argument, and religion will win more often than not

[PHP] Re: DAMN IT - apologies!

2002-01-24 Thread michael kimsal
ing on how late people want to stay after 5) If anyone ELSE (besides the previous caller!) is interested, please call me at 734-480-9961, or tollfree at 1-866-745-3660. We've about 4 seats left at this point, so "don't delay" as those tv commercials say. :) Michael Kimsal

[PHP] DAMN IT

2002-01-24 Thread Michael Kimsal
Someone called earlier asking for you about the PHP course. He was a bit abrupt, and when I said $2500 (he asked the price) he pretty much said 'thanks, I'll ask my boss, goodbye' and hung up before I could say anything. I got his phone number, but no name. ? I don't know if that'll he

[PHP] Re: getting a LAMP job in this economy

2002-01-24 Thread Michael Kimsal
(make money) many won't care what you use, or at least won't care to the point of restricting you. There will always be shops that are CF only, or MS only, or whatever. But there's a (growing, I think) number of businesses out there that simply need to have things work - be

[PHP] Re: PHP vs Java reliability

2002-01-21 Thread Michael Kimsal
ested in total programming for the enterprise, you may have an uphill battle against Java (whether or not it's better is beside the point). Focus on the cost/benefit, not JUST the benefits. Yeah, Java/ASP/etc can have enormous benefits over PHP in some situations, but the price tag is often

[PHP] Re: Print ONCE ONLY?????

2002-01-12 Thread Michael Kimsal
e body help please??? > > here is my code > > ... > $query = "select * from main_table where item_type = 'hotel' and class = > 'melati'"; > $result = mysql_query($query); > $row = mysql_fetch_array($result); > echo "$row[item_i

[PHP] Re: Finding PHP Developers for Remote Project

2002-01-10 Thread Michael Kimsal
We run our local PHP user group and there are always a number of people who are looking for contract work. Depending on your needs I could recommend one or more of them. Good luck! Michael Kimsal http://www.tapinternet.com/php/ PHP Training Courses 734-480-9961 -- PHP General Mailing Lis

Re: [PHP] Re: PHP vs. ASP

2002-01-09 Thread Michael Kimsal
Rasmus Lerdorf wrote: >>Databases - although PHP 'supports' many databases natively, the support >>is in the form of 3rd party libraries with PHP wrapper functions. >>Nothing inherently wrong with that, but the current method dictates that >>to use oracle you use oci_ functions, for mysql you

[PHP] Re: PHP vs. ASP

2002-01-09 Thread Michael Kimsal
n't have to go fetch and compile the freetds library to get SQLServer connections to work under Linux. Michael Kimsal http://www.tapinternet.com/php/ PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

Re: [PHP] chat with php

2001-09-25 Thread Michael Kimsal
Edney Marcel Imm wrote: >HI. > >Anyone have a chat with php? > >tks > ME: Hello PHP PHP: Hello M: How are you? P: Tell me more about you. M: I'm just a guy living in Michigan P: Are you sure? M: Yes P: How does that make you feel? M: I dunno... Sorry - I couldn't resist. Visions of old ELIZA

Re: [PHP] Re: event cache management (no, not code cache) -- W32/Nimda filter

2001-09-22 Thread Michael Kimsal
he time/effort to get one. Also, consider those with multiple web servers - each of them logging distinct data would be overkill - a separate DB machine would take the load off them (network only, no disk) and keep a centralized copy of logs. Good luck. Michael Kimsal http://www.tapinter

Re: [PHP] MSSQL Support

2001-09-19 Thread Michael Kimsal
is located at freetds.org. We've used it fine talking from a RedHat 6.2 box to multiple SQL7.0 machines on NT4. I say he's our local genius cause he presents at our local LUG and PHP user groups on occasion. One hell of a nice guy. :) FreeTDS will be sufficient for most of your M

Re: [PHP] Performance: PHP vs. Visual Basic

2001-09-16 Thread Michael Kimsal
x27;ve already paid for this software you're running (right?) it's probably worth it to take a while to optimize what you've got first. Michael Kimsal http://www.tapinternet.com 734-480-9961 On Sun, 16 Sep 2001, Masami Kawakami wrote: > Maybe this is one

Re: [PHP] More thoughts about PHP: Taglibs

2001-09-11 Thread Michael Kimsal
Dr. Evil wrote: >It seems to me that one of the problems with PHP is that you have to >include code in your HTML pages. Even with the cleanest design, you >end up with HTML that looks like this: > > >Hello, . Your last login was showlastlogin(); ?>. > > No, you don't. Have a script file th

Re: [PHP] Re: More thoughts about PHP: Taglibs

2001-09-11 Thread Michael Kimsal
Perhaps you should just use cold fusion then, if you're that hot and heavy into tag-based languages. tagservlet.com has a Java/CF hybrid which may hold some interest. PHP's strength, IMO, is that it's NOT a tag-based language. You can create any functions you want and call them already from a

Re: [PHP] User Authentication / only 1 login per user at any time

2001-09-10 Thread Michael Kimsal
thin >20 minutes .. Or is there a better way to do it? >Thanks, >Lewi > Michael Kimsal http://www.tapinternet.com/php PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] PHP Training Course

2001-09-10 Thread Michael Kimsal
everyone out there. :) --- Michael Kimsal http://www.tapinternet.com/php 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] PHP Redirect in the middle of code?

2001-09-10 Thread Michael Kimsal
Good to hear. How's fusebox working for you? Andrew Penniman wrote: >The Steve Edberg (option #2) and Michael Kimsal suggestions to use >ob_start() output buffering work like a charm. Thanks so much! I would >have been a long time coming before I mad this connection on my

Re: [PHP] PHP Redirect in the middle of code?

2001-09-10 Thread Michael Kimsal
As others have mentioned, output buffering is what you want to look at. I've been doing some minor research on CF the past couple weeks, and it seems that CF, by default, always has output buffering on. While it's great for allowing redirects/header info to be pushed out wherever in a script,

Re: [PHP] Assigning output of include() to a variable

2001-09-09 Thread Michael Kimsal
urn output buffering on, include() the file, grab the contents from the output buffer, put them into $x, and clear the buffer. There should be an example or 2 at the website. zend.com also had an article on output buffering. -------- Michael Kimsal http://www.tapinternet.com 734-480-9961

Re: [PHP] Re: a general perl like pares of the query string...

2001-09-08 Thread Michael Kimsal
Aaron, CC Zona wrote before that: If track_vars is on (always true if version >= 4.0.3), then the global vars $HTTP_GET_VARS['bob'] and $HTTP_GET_VARS['phil'] are already set. And if register_globals is on, then the global vars $bob and $phil are also already set. --

[PHP] Cybercash compiling as shared module

2001-09-07 Thread Michael Kimsal
I'm trying this specifically with the cybercash module. When I just do ./configure --with-cybercash=/path/to/mck, it works (well, it gets thru configure and make anyway). ./configure --with-cybercash=/path/to/mck,shared and ./configure --with-cybercash=shared,/path/to/mck both don't work. I

Re: [PHP] remote scripting objects

2001-09-05 Thread Michael Kimsal
The javascript would have to call a PHP script on the server instead of an ASP script. It's nothing specific to MS stuff. MailingLists wrote: > I don't know if it's IIS or ASP that handles this, but there's a beast > called a remote scripting object. It combines JavaScript and ASP to > c

Re: [PHP] PHP Stress Testing.

2001-09-04 Thread Michael Kimsal
Goalposts change. The zdnet eweek article from last november showed PHP being *THE* fastest between JSP, ASP, CF and PHP. PHP was 47 pages/second. ASP was 43, CF was 25 or 26, and JSP was 13. The benchmark was a ecommerce store - each system had functionally equivalent code, and ran on the sa

Re: [PHP] PHP on Solaris / Linux with MSSQL Server 7.0 or 2000 on Win2K

2001-09-04 Thread Michael Kimsal
col changes between 7 and 2000 (from what I hear) so the basic stuff should work the same. What types of 'weird problems' are you having? - michael kimsal http://www.tapinternet.com/php/ php training courses 734-480-9961 -- PHP General Mailing List (

Re: [PHP] If PHP4 existed in 1995 we would of taken over the worldby now

2001-09-04 Thread Michael Kimsal
I don't think "we" need "spies" - the ASP stuff is pretty out in the open as to where they're going. Visit www.ibuyspy.com to get some tutorials on how to use ASP+ in a commerce environment. There's some neat things, but most of it seems overkill, and some of the neat things still seem to lock

[PHP] separate files?

2001-09-03 Thread Michael Kimsal
Honestly, that seems like one damn big file to me. Are you using all those functions in every single file? If not, you're loading and (re)compiling a hell of a lot of code on every page request. If you're done developing, it may be time to split that up into more logical files (all db functio

Re: [PHP] php's future

2001-09-02 Thread Michael Kimsal
Pardon my English - I don't know Chinese. :( That's the worst comparison benchmarks I've ever seen. http://www.zdnet.com/enterprise/stories/linux/0,12249,2646052,00.html DAMN - they've moved it. Anyone got a better link? The only one I could find was http://groups.yahoo.com/group/ASP-Develo

Re: [PHP] Newbie: PHP has encountered an Access Violation..

2001-09-02 Thread Michael Kimsal
You are probably using the Windows version, based on the error message. Only time i've seen this is when trying to use the ISAPI Windows version - it just doesn't work very well, period. Don't use it. use the CGI on Windows, or move to another platform and have it compiled in to the webserve

[PHP] September PHP meeting - SouthEast Michigan Php User Group (SEMPUG)

2001-08-30 Thread Michael Kimsal
EARLY REMINDER: Our next meeting is NOT tonight (as some people have asked) but *next* Thursday evening (first Thursday in September - September 6, 2001). Address 125 N Huron #400 Ypsilanti, MI 48197 2 blocks north of Michigan Ave in downtown Ypsi. As usual, we'll see you all between 7 and 8 f

Re: [PHP] Best Way?

2001-08-28 Thread Michael Kimsal
So require them to have cookies turned on. If it's YOUR system, you can require whatever you want. If this is something for your company, presumably it's a business tool of some sort, and you can then require them to do whatever you need to go get the job done. Gary wrote: > Hi All, > I h

Re: [PHP] What does PHP stand for?

2001-08-28 Thread Michael Kimsal
It stands for freedom of choice, liberty, mom and apple pie, as far I can tell, though probably not in that order. Niklas Lampén wrote: >It just crossed my mind: I don't know what PHP stands for...so anyone? :) > > >Niklas > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

Re: [PHP] Re: The future of PHP - accessory libraries

2001-08-28 Thread Michael Kimsal
Rasmus Lerdorf wrote: >>Something which seems to not be a viable option for most things is SO >>files. For some reason, the only "real" way (documented) to get >>things into PHP is to compile them all into PHP. I've used the pdflib >>SO file and just used dl() to bring it in - works like a ch

Re: [PHP] Re: The future of PHP - accessory libraries

2001-08-28 Thread Michael Kimsal
Rasmus Lerdorf wrote: >>Look at it from their point of view. Say, as a customer, you want to use >>library X. The ISP looks around and eventually find it lives on a personal >>site in Greece or Hungary. Not very confidence inspiring. The ftp on this >>site is broken, so they email the author a

Re: [PHP] Re: The future of PHP - accessory libraries

2001-08-28 Thread Michael Kimsal
and other things. I don't NEED these things compiled in to PHP for every page request, yet the only method that's ever worked for me is by compiling them directly in. Most packages don't give PHP specific instructions, and even the couple that do don't appear to give instru

Re: [PHP] Certification

2001-08-27 Thread Michael Kimsal
7;s > because there is no certification, or proof of any kind from a > respected or well-known organization. --- michael kimsal http://www.tapinternet.com/php/ php training courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To un

Re: [PHP] Controlling Printing output

2001-08-27 Thread Michael Kimsal
pic, text or whatever) in a A4 sheet, for an >example? > >Thanks in advance, > -------- michael kimsal http://www.tapinternet.com/php/ php training courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PRO

Re: [PHP] Dedicated Hosting

2001-08-27 Thread Michael Kimsal
We've used rackspace, webservepro.com, xo, and had machines placed at exodus. Webservepro.com is the least expensive, and they still maintain pretty good service (personal service I mean). No default UPS - you gotta pay extra for that if it's that important to you (over 2 years hosting - 2 hou

Re: [PHP] What development environment do you use for PHP?

2001-08-27 Thread Michael Kimsal
PFE32 and WS_FTP when in windows VI or kwrite when under linux Greg Beaver wrote: >Hi, > >I'm curious what programs/platforms different people use to develop PHP. > >I don't have access to a good unix or linux server (need the hard drive >space for large .wav files), so I develop in Microslop L

Re: [PHP] Thinking about going to ASP

2001-08-26 Thread Michael Kimsal
sure exactly what type of reaction you're looking for from the group here. :) Could you be more explicit about some of the "really great features" it has? include() is a "really great feature" of PHP which somehow seems to get lost in the ASP/IIS world.

Re: [PHP] The future of PHP

2001-08-24 Thread Michael Kimsal
Jeff Lewis wrote: >I actually had a talk with my boss today... > >We discussed different technologies and why we chose them. The reasons we >chose Java/JSP/J2EE etc: > >1) Scalability (number 1 reason) >2) Different projects like EJB etc > >I had been talking about PHP a lot and he says he lik

[PHP] Re: The future of PHP

2001-08-23 Thread Michael Kimsal
ee PHP evolve to more of a standalone system to act as its own webserver - or have closer integration with Apache ala mod_perl. If either of those happen, imo, it'll be much longer than 3 years. If someone could write a PHP -> Java bytecode compiler, PHP code could run on any JVM, any t

[PHP] Training Course Update - October 1-5

2001-08-22 Thread Michael Kimsal
far in advance to schedule time off, get the boss to expense the trip, etc. :) Thanks! ----- Michael Kimsal http://www.tapinternet.com/php PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP] Free PHP runtime Accelerator for Linux available

2001-08-21 Thread Michael Kimsal
ping out with a more established project would benefit everyone more in the long run. Just some thoughts. :) Thanks again Michael Kimsal http://www.tapinternet.com/php/ PHP Training Courses 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] Need open source community help!

2001-08-15 Thread Michael Kimsal
ave that. Figure an extra $6k on top of the cost of the software. Is it worth $6k to have something next week, or can they wait another month while you feverishly add the missing features - "exactly to spec" - for a custom fit? --- Michael Kimsal ht

Re: [PHP] something like SSI ?

2001-08-14 Thread Michael Kimsal
I gets processed before ASP processes things, you can not do this in ASP. Well, *sort of*, now, in ASP3, in the form of Server.Execute(), but it's not really the same feel. (and it took them long enough to catch up!) :) --- Michael Kimsal http://www.tapinte

Re: [PHP] Question on Commercial Offerings

2001-07-31 Thread Michael Kimsal
rojects, but won't be able to resell/redistribute. Giving people access to the source code can actually be a positive to some people. Yes, you may lose some potential sales, but you'll gain sales to people coming over from more restrictive carts - the kind where you don't get th

<    1   2   3   4   >