Re: [PHP] Mass Mailing

2001-12-05 Thread Michael Cronström
Hi again, These scripts get there email-info from a database. How many mails send per action depends on the max_execution_time set by your provider. Each send mail is marked in the database so if the process stops to "early" you can continue with the rest and unmarked. Web invent

Re: [PHP] Mass Mailing

2001-12-05 Thread Michael Cronström
Nop! At 16:36 05/12/01, you wrote: >Michael, > >I'm designing a membership mail-out service right now - and wanting db >'recorded delivery'. >Are your scripts available in one of the online script-libraries? > >Please advise, >=dn > > >-

Re: [PHP] multi-dimensional array

2001-12-05 Thread Michael Sims
At 03:41 PM 12/5/2001 -0500, Jordan wrote: >Is there any way to pass a multi-dimenstional through a url. something like >/cart.exe?item[1][1]=3 > >just curious. > >-Jordan I haven't personally done this myself, but theoretically you could accomplish this by first using the serialize function:

Re: [PHP] Mass Mailing

2001-12-06 Thread Michael Cronström
I have now located a simple HOW-TO and scripts in a zip at: http://www.zoon.se/mailing/index.htm Good luck! Michael Cronström Web Inventor At 00:33 06/12/01, you wrote: >Perhaps I misunderstood. Are you making scripts available? If so, I'm >interested in taking a look. If not,

Re: [PHP] Uploaded Image display problems

2001-12-07 Thread Michael Hall
ect DB"); > > $get_image = "SELECT ImgType, ImgData FROM ImageTable WHERE PKey=$PKey"; > > $get_image_result = mysql_query($get_image) > or die ("Unable to get image."); > > $binary_junk = mysql_result($get_image_result,0,ImgData); > $file_type = mysql_result($get_image_result,0,ImgType); >

Re: [PHP] Re: session_id()

2001-12-07 Thread Michael Hall
iguration - > > if I use difference browser. > > > > IE : > > 9ff68d81039d9ece3ba9840328b91488 > > > > Opera : > > 7aa4895172b5a4785c9fb754eaf792aa > > > > NN : > > 1007630964 > > -- Michael Hall

Re: [PHP] Getting started - what do I need?

2001-12-07 Thread Michael Hall
can use as front ends for these packages. I >went to mysql.com > and php.net and it seems that i can download both of these packages to my computer >for free. Any > help would be greatly appreciated. > > Thanks > Indera > > > > -- ##

[PHP] Logo proposal - voting script!

2001-12-13 Thread Michael Cronström
OK guys, a voting script! at: http://zoon.se/vote/logo.php try it :) Michael Cronstrom Web Inventor At 13:26 13/12/01, you wrote: >I'd kind of ignored this whole thread thinking it was going on and on, but >in the end I have to say something :) > >None of the other "an

Re: [PHP] Looping?

2001-12-14 Thread Michael Sims
At 01:37 PM 12/14/2001 +0100, Tony Arnold wrote: >start('10'); > html-code... I want this to be repeated 10 times. >end(); > >This doesn't work but this is how I want it! :-) Anyone? How about using alternate syntax? For example: html-code http://www.php.net/manual/en/control-st

Re: [PHP] thanks

2001-12-15 Thread Michael Sims
At 07:56 PM 12/15/2001 +, [EMAIL PROTECTED] wrote: > been using php for a few months now, just wanted to say a big THANK YOU > to all the developers for such a wonderful language, thanks guys! Well, I have to second that. If it weren't for PHP I probably would have never gotten into web d

Re: [PHP] A primary practicall for the pros- the easiest way to sort files in a directory by name or date.?

2001-12-15 Thread Michael Geier
depends on how elegant you want: passthru("ls -l | awk '{print $9}' ");//sort by name ascending passthru("ls -lt | awk '{print $9}' "); //sort by modification time descending add -r to the ls command to reverse the order of either sort instead of using passthru, you could use exec

Re: [PHP] sytax to remove specifc item in string-indexed array???

2001-12-16 Thread Michael Sims
At 05:53 PM 12/14/2001 +1100, Vincent Ma wrote: >Hi everyone: > > I would like to know how to specific item in array. For the add new item >to array, we know just : > >$array += array("$key" => "$value"); > >How to remove specific item in array??? unset(array["specific_item_index"]); ...h

Re: [PHP] Why don't ...

2001-12-16 Thread Michael Sims
At 09:14 AM 12/16/2001 -0500, Yoel Benitez Fonseca wrote: >Hi! > >The following code fragment tries to read a sequence of digits from >a file but it doesn't work, only the first character is read, >Which is my error?. > > >$str = ""; >while( ($c = fgetc($this->m_file)) && e

Re: [PHP] Logo proposal - voting script!

2001-12-17 Thread Michael Cronström
Let´s say the site was attacked, abused or so so we don´t run it anymore;-| Anyhow, even I say: "LEAVE IT THE WAY IT IS!!!" Michael Cronstrom Web Inventor [EMAIL PROTECTED] At 13:36 17/12/01, you wrote: >Arg > >-> > > >Not Found T

[PHP] printer_write()

2001-12-17 Thread Michael Eaton
sub_key=>$value) { echo $sub_key.": ".$value.""; } } ?> \\"; echo "printer: ".$printer.""; $handle = printer_open($printer); foreach($DATA as $val) { printer_write($handle, $val); echo $va

[PHP] PHP 4.10: any way to override register_globals = OFF

2001-12-17 Thread Michael Jurgens
Hi, Now that register_globals is (or will be) OFF by default (just like error_reporting) I'm facing a huge rewrite of existing code if my hosting provider decides that he wants to upgrade his php (and believe me, he will use default settings) Is there any way to override register_globals and erro

Re: [PHP] PHP 4.10: any way to override register_globals = OFF

2001-12-17 Thread Michael Jurgens
something like set_register_globals I haven't got that much experience with playing with variables at this level. What would do the trick is something like this: for all in $_GET { $[varname] = $_GET[varname] } Could anyone give me some pointers in actually programming this? Many thanks, Mich

Re: [PHP] PHP 4.10: any way to override register_globals = OFF

2001-12-17 Thread Michael Jurgens
ewsgroup, thank you all, Greetz, Michael "Richard Heyes" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > for all in $_GET > > { > > $[varname] = $_GET[varname] > > } > > > > Could a

Re: [PHP] addslash/stripslashes

2001-12-18 Thread Michael Sims
nly drawback is that if you need variables on the next page you'll have to pass them as an URL parameter... http://www.php.net/manual/en/function.header.php - Michael Sims mhsims at midsou

Re: [PHP] Access rights for php files on Linux?

2001-12-18 Thread Michael Geier
Use include files to pass your authentication information. auth.php: put auth.php in your home directory with you as owner and apache group id as group, or create a group that contains you and apache user (probably 'nobody'). $> chmod 740 /your/home/dir/auth.php On Wed, 19 Dec 2001, Daniel

[PHP] temporary image

2001-12-19 Thread Michael Mehlmann
hallo, my applications generates a html-page, with a link to an image. this image is created by the application, and should exist only temporarily - so it can be deleted after being accessed by the html-page - any ideas how to implement this? is working with timetamps (microseconds) safe for crea

Re: [PHP] Help with Sessions - Should be easy =]

2001-12-20 Thread Michael Sims
At 01:53 AM 12/21/2001 +1100, Tomasz Jachimczak wrote: >I am retreiving user information from a database after verification, and >would like to place certain feilds into a session variable for easy >access/retreival. I can get the information out of the database, but cannot >place it into any sort

RE: [PHP] How can I have CVS ?

2001-12-20 Thread Michael Sims
At 10:19 AM 12/20/2001 -0800, Nathan Cassano wrote: >And the answer is... WinCVS > >Check it our at. >http://www.cvsgui.org/ And don't forget TortoiseCVS. http://www.cvsgui.org/TortoiseCVS/index.shtml -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [PHP] Mommy, is it true that...?

2001-12-20 Thread Michael Sims
At 03:39 AM 12/21/2001 +0200, Bogdan Stancescu wrote: >Hi everybody! > >Two things I consider urban myths about PHP (plus MySQL) - please let me >know what you think of these: > >1. The evil global variables [...] >My question to you guys is this: does anybody know of a real example of >reasonably

Re: [PHP] Re: Mommy, is it true that...?

2001-12-20 Thread Michael Sims
At 06:03 PM 12/20/2001 -0800, Philip Hallstrom wrote: > > I've done something similar in the past just for kicks, and I got the same > > result you did (i.e. an error). I believe this is because mysql_query() > > expects ONE query at a time and will break if you send two or more. I > > could be

Re: [PHP] Re: Mommy, is it true that...?

2001-12-20 Thread Michael Sims
At 04:26 AM 12/21/2001 +0200, Bogdan Stancescu wrote: >Philip Hallstrom wrote: > > > > A definite possibility, but it does depend on the hacker in question > > > knowing exactly how your script is written... > > > > True, but in a shared hosting environment this is very likely. > >...not to mentio

Re: [PHP] Re: Mommy, is it true that...?

2001-12-20 Thread Michael Sims
At 04:51 AM 12/21/2001 +0200, Bogdan Stancescu wrote: > > > > True, but in a shared hosting environment this is very likely. > > > > > >...not to mention open source code. > > > > Oh yeah. Guess I had a mental lapse there. If you are using, say, a > > script downloaded from freshmeat.net and it

Re: [PHP] Re: Mommy, is it true that...?

2001-12-20 Thread Michael Sims
At 11:28 PM 12/20/2001 -0500, Billy Harvey wrote: > > Freshmeat.net is a very popular database of linux software and includes a > > wide variety of PHP scripts. My point was that if you downloaded an > > insecure script from such a popular site then you are asking for trouble > > because chances

Re: [PHP] Beginner question?

2001-12-20 Thread Michael Sims
At 12:13 AM 12/21/2001 -0500, jtjohnston wrote: >This seems newbie. So what am I doing wrong? I want to print the >contents of the file. I get resource id #1 instead. Do I need to add a >header or what? > > >//$fp = fopen ("C:/Program Files/localhost/info.txt", "r"); >//$fp = fopen ("http://compca

Re: [PHP] Beginner question?

2001-12-21 Thread Michael Sims
At 01:59 AM 12/21/2001 -0500, jtjohnston wrote: >Michael, > >$fp = fopen ("./users.txt", "r"); >while (!feof ($fp)) { > $buffer = fgets($fp, 4096); > echo $buffer; > } >fclose($fp); > >Ok. But $buffer is not an array, is it? Why/what is 4096?

RE: [PHP] Sendemail appends domain to mail function

2001-12-21 Thread Michael Geier
set From: like this - $mailheaders .= "From: XYZ Company <[EMAIL PROTECTED]>\n"; -Original Message- From: Peter [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 4:48 AM To: [EMAIL PROTECTED] Subject: [PHP] Sendemail appends domain to mail function Hi, I have problem.

[PHP] Function definition: how to make default argument an empty array?

2001-12-22 Thread Michael Jurgens
though... In pseudo-code: function makeyogurt ($flavour, $type = 'EMPTY ARRAY') { } Any help would be much appreciated, Michael -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact t

Re: [PHP] php pop3 checker

2001-12-22 Thread Michael Jurgens
Or try Popper, a nice standard webmail solution written in PHP. It must be on freshmeat.net Michael "Bogdan Stancescu" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Check these out: > http://www.horde.org/imp/ > http://twi

Re: [PHP] Function definition: how to make default argument an empty array?

2001-12-22 Thread Michael Sims
At 01:17 PM 12/22/2001 +0100, Michael Jurgens wrote: >I'm now looking for a way to have the second (optional) argument be an array >of strings. I can't get it to work though... > >In pseudo-code: > >function makeyogurt ($flavour, $type = 'EMPTY ARRAY') >

Re: [PHP] strtoupper and HTML entities

2001-12-22 Thread Michael Sims
At 11:32 PM 12/22/2001 +0100, mweb wrote: >Hello, > >I know I can convert a string to all uppercases with the strtoupper() >function. However, what if the original string contains HTML entities? > >EXAMPLE: > >original string = "funkstörung" Try this: -- PHP General Mailing List (http://www.

Re: [PHP] Why Can't I Get PHP to Work with MySQL??

2001-12-23 Thread Michael Sims
At 12:16 PM 12/23/2001 -0800, Ben Ocean wrote: >Hi; >I get this error when I try to restart Apache: > >Syntax error on line 236 of /etc/httpd/conf/httpd.conf: >Cannot load /etc/httpd/libexec/libphp4.so into server: >/etc/httpd/libexec/libphp4.so > >The above file does, of course, exist. I'm runni

Re: [PHP] If/else conditional statement ...

2001-12-23 Thread Michael Sims
At 01:11 PM 12/23/2001 -0700, Robert Dyke wrote: >Hello: > >In ASP I can write a Conditional statement like this: > ><% If $varA == True Then %> >Straight HTML in here that only displays if $varA == True ><% Else %> >Straight HTML in here that only displays if $varA != True ><% End if %> > >Transl

[PHP] Stopping $_REQUEST array to give warnings

2001-12-24 Thread Michael Jurgens
per' way to import a variable in a script without being sure it was passed? (adding a @ to the beginning of the line is not proper you must agree) Thanks, Michael -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: [PHP] One good thing about $_SESSION

2001-12-26 Thread Michael Sims
At 11:59 AM 12/26/2001 -0200, Julio Nobrega Trabalhando wrote: > Is that while porting a script to PHP 4.1.0, where I used to check: > >if (session_is_registered('del_power') && $del_power == 1) { > // del stuff >} > > Because $del_power could be registered as 1 or 0, now I can do: > >if (

[PHP] Custom Session Handlers with Oracle?

2001-03-21 Thread Michael Champagne
e. Thanks! -- Michael Champagne, Software Engineer Capital Institutional Services, Inc. wk: [EMAIL PROTECTED] hm: [EMAIL PROTECTED] ** This communication is for informational purposes only. It is not intended as an offer or solicitati

[PHP] Form variables

2001-03-21 Thread Michael George
ay to work it into a single dimensional array... Thanks! -Michael -- No, my friend, the way to have good and safe government, is not to trust it all to one, but to divide it among the many, distributing to every one exactly the functions he is competent to. It is by dividing and subdividing thes

[PHP] Ack! Cookie Problems!

2001-03-21 Thread Michael Champagne
and check for a variable at the beginning and redirect to the login page if the var is not found. Does anyone know what's up with this? Thanks for your help in advance. -- Michael Champagne, Software Engineer Capital Institutional Services, Inc. wk: [EMAIL PROTECTED]

[PHP] Passthru Question

2001-03-21 Thread Michael Bartlett
Hi all, Having a weird problem running the passthru() function on quite an old version of PHP3 (3.0.7). Pasted below is the php source code: === Tape Status Check if this page is blank - that is good! === When I run this in a shell (

Re: [PHP] Only 5 lines

2001-03-22 Thread Michael Bartlett
surely it should be limit 0,4 (0,1,2,3,4) = 5 items! remember 0 is row 1 not 1 ""Dennis Haller"" <[EMAIL PROTECTED]> wrote in message 99cs5b$bj4$[EMAIL PROTECTED]">news:99cs5b$bj4$[EMAIL PROTECTED]... > Hi all, im using the following scripts: > > include("connect.php"); > > $query = "SELECT thre

Re: [PHP] Only 5 lines

2001-03-22 Thread Michael Bartlett
if this message duplicates - sorry. some weirdness on my news client! dennis, i think your limit should read 0,4 because 0 is actually row 1 (we count from 0 not 1) so limit 0,4 gives you rows 0,1,2,3,4 - which is 5! not 4! ""Dennis Haller"" <[EMAIL PROTECTED]> wrote in message 99cs5b$bj4$[EMAI

[PHP] Freshmeat Ad?

2001-03-22 Thread Michael Geier
Is there a reason Freshmeat is showing a banner stating "PHP 4.01pl2 is out"? Especially since the binary is up to 4.04pl1. Michael Geier CDMSports Systems Administration EMail: [EMAIL PROTECTED] Phone: 314.991.1511 x 6505 -- PHP General Mailing List (http://www.php.net/) To unsu

[PHP] Don't understand HTTP_SESSION_VARS

2001-03-23 Thread Michael Champagne
on. Does anyone know exactly how this works or can point me to a reference page that has how this works? Thanks in advance for any replies. -- Michael Champagne, Software Engineer Capital Institutional Services, Inc. wk: [EMAIL PROTECTED] hm: [EMAIL PROTECTED] ***

[PHP] I don't understand HTTP_SESSION_VARS

2001-03-23 Thread Michael Champagne
obal $HTTP_SESSION_VARS; session_start(); echo ($HTTP_SESSION_VARS[my_session_var]); } I assume this isn't the right way to do it since it doesn't seem to work. I have register_globals off. Does anyone know what I should be doing? Thanks in advance for any replies! -- Michael Champagne

Re: [PHP] I don't understand HTTP_SESSION_VARS

2001-03-23 Thread Michael Champagne
"If track_vars is enabled and register_globals is disabled, only members of > the global associative array $HTTP_SESSION_VARS can be registered as session > variables. " > > so, did you try this: > > session_register($HTTP_SESSION_VARS["my_session_var"]; >

Re: [PHP] I don't understand HTTP_SESSION_VARS

2001-03-23 Thread Michael Champagne
> > session_register($HTTP_SESSION_VARS['my_session_var']); > > } > > Kirk > > > > -Original Message- > > From: Michael Champagne [mailto:[EMAIL PROTECTED]] > > Sent: Friday, March 23, 2001 1:32 PM > > To: PHP General Mailing List > > Subj

Re: [PHP] I don't understand HTTP_SESSION_VARS

2001-03-23 Thread Michael Champagne
> > > > function set session() > > > { > > > global $my_session_var,$HTTP_SESSION_VARS; > > > session_start(); > > > $my_session_var = "Blah blah"; > > > session_register($HTTP_SESSION_VARS['my_session_var']); > > >

Re: [PHP] I don't understand HTTP_SESSION_VARS

2001-03-23 Thread Michael Champagne
hink that would work. For > instance, > > $a="b" > session_register($a); > > actually registers a variable called $b. I made that mistake in my post > too. > > > > > -- Michael Champagne, Software Engineer Capital

Re: [PHP] PHPBuilder website

2001-03-23 Thread Michael Kimsal
I can get to it OK. "Boget, Chris" wrote: > What's up with the PHPBuilder website? It's been down all day. > :( Does anyone know? > > Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To conta

RE: [PHP] I don't understand HTTP_SESSION_VARS

2001-03-23 Thread Michael Champagne
missions arising as a result of > transmission. Use of this communication by other than intended > recipients is prohibited. > ** > -- Michael Champagne, Software Engineer Capital Institutional Services, Inc. wk: [EMAIL PROTECTED] hm: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.

[PHP] What is session.cookie_secure?

2001-03-23 Thread Michael Champagne
I noticed the setting session.cookie_secure in my php_info(), but could not find anything mentioned about it in the documentation. Does anyone know what this setting does? -- Michael Champagne, Software Engineer Capital Institutional Services, Inc. wk: [EMAIL PROTECTED] hm: [EMAIL PROTECTED

[PHP] PHP error parsing SQL string containing assoc. array

2001-03-23 Thread Michael Champagne
$user_fields['MINS_TILL_EXPIRE'] * 1/1440))" I get this error back from PHP: Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' Can I not use my associative array like this? -- Michael Champagne, Software Engineer Capital Institution

Re: [PHP] I need an expert to tell me what I am doing wrong

2001-03-23 Thread Michael Hall
Something else to investigate could be whether you've passed the db name to the script. If the the name of the db is different to $user, you'll need to do something like $dbname = "whatever"; mysql_select_db("$dbname",$db); Mick On Sat, 24 Mar 2001, YoBro wrote: > What could I possibly be do

Re: [PHP] quick array questions

2001-03-23 Thread Michael Hall
Yes it can. Try serialize() and unserialize() functions. Mick On Fri, 23 Mar 2001, Jaxon wrote: > > can an array be stored in a database field? > E.g. make a few runtime settings for a page, store the settings as an array > in a field, and use that array to make some runtime settings? > > F

RE: [PHP] PHP vs Servlet

2001-03-24 Thread Krznaric Michael
So tell us? Mike -Original Message- From: Jesper Blomstrm [mailto:[EMAIL PROTECTED]] Sent: Monday, March 19, 2001 4:51 PM To: [EMAIL PROTECTED] Subject: SV: [PHP] PHP vs Servlet I found out how to do it. Thx anyway / J Jesper Blomström <[EMAIL PROTECTED]> skrev i diskussionsgruppsme

Re: [PHP] attachments with mail() function

2001-03-24 Thread Michael Hall
I'm not sure about including them in the mail function as such, but it can certainly be done using one of several mime_mail classes that are around. I don't have one handy right now but you can find them by searching the php archives and/or the annotated php manual. I know the one by Schumann and

[PHP] Getting Javascript variable into PHP

2001-03-26 Thread Michael Champagne
ege or not? If there's a better way to do this please let me know. Thanks in advance for any replies. -- Michael Champagne, Software Engineer Capital Institutional Services, Inc. wk: [EMAIL PROTECTED] hm: [EMAIL PROTECTED] ** T

RE: [PHP] I don't understand HTTP_SESSION_VARS

2001-03-26 Thread Michael Champagne
y_session_var] > is enough. > > Kirk > > > > -Original Message- > > From: Michael Champagne [mailto:[EMAIL PROTECTED]] > > Subject: RE: [PHP] I don't understand HTTP_SESSION_VARS > > > > > > YES! That's what it was. You rule ma

[PHP] equivalent to PERL's qq

2001-03-26 Thread Michael Hall
date Order by id |; Is there anything similar to this in PHP? I've been unable to find it if there is. Michael Hall Prairie Fire Internet Technologies [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROT

Re: [PHP] Serializing/unserializing objects

2001-03-26 Thread Michael Kimsal
You'll be reinitializing the object on every page request - objects aren't perisistant across requests. You can make the data in that object persistent - basically recreate the object every page with the old data (PHP4 sessions would be one way to go here) but you won't be able to make the objec

[PHP] Is it possible to have href link refer to same PHP file?

2001-03-27 Thread Michael Champagne
t it seems like it would be nicer to have this in the same file. Thanks! -- Michael Champagne wk: [EMAIL PROTECTED] hm: [EMAIL PROTECTED] ** This communication is for informational purposes only. It is not intended as a

Re: [PHP] Is it possible to have href link refer to same PHP file?

2001-03-27 Thread Michael Champagne
But then how would you process it in the same file? If I'm calling it from myfile and my link is to myfile then how does it know that it's already been clicked? Thanks, Mike > On Tue, 27 Mar 2001 14:04:58 -0600 (Central Standard Time), Michael > Champagne ([EMAIL PROTECTED]) wr

Re: [PHP] How to send attachment with email with php?

2001-03-27 Thread Michael Hall
Use a mime_mail class. Have a look at the mail() function in the annotated PHP manual. There are a few mime_mail classes mentioned there with links. Mick On Wed, 28 Mar 2001, Carfield Yim wrote: > How to send attachment with email with php? > > -- > PHP General Mailing List (http://www.php.

Re: [PHP] GZip + NS + Print = Trouble

2001-03-28 Thread Michael Kimsal
If you're using a templating system of some sort, if should be pretty easy to check the USER_AGENT and only compress if it's IE. Or NOT compress is it's NS. That's about the only way to do it easily that I can think of, and we're planning on implementing. I WANT to like netscape. REALLY. Bu

Re: [PHP] GZip + NS + Print = Trouble

2001-03-28 Thread Michael Kimsal
No problem. Understood about the table issue, but it's normally not the downloading of the HTML that's as much a problem as the rendering, in my experience, with netscape. I'm the last person who would adopt this attitude, but... Check your stats? How many IE users? How many NS users? The 'so

Re: [PHP] unix system

2001-03-28 Thread Michael Kimsal
A 'minimum' is hard to recommend with out usage requirements. The minimum specs really depend on what you're doing with it - intranet? public web server? how much traffic do you expect? You don't state an OS preference here, but I'd think hardware requirements would be similar for both unix/li

RE: [PHP] Tough One

2001-03-29 Thread Krznaric Michael
To get this done I would use an Expect script, driven through CGI. Mike -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 9:22 AM To: [EMAIL PROTECTED] Subject: [PHP] Tough One Hi, Ok I have a real tough one here (well to me it is :-

[PHP] Error during session_start - is this a bug?

2001-03-29 Thread Michael Champagne
Ok, in testing our site that heavily uses sessions I came across this error: Warning: open(/tmp/sess_f3051699b0f1ae4a89570e66dab05de9, O_RDWR) failed: m (0) in /ora9ias/Apache/Apache/php/cisweb_global.inc on line 19 I can't figure out what causes it. It just happens occasionally when I'm calli

[PHP] NEW JOBS LIST

2001-03-29 Thread Michael Kimsal
keep the focus of the group on PHP jobs. I invite you all to join up at http://groups.yahoo.com/group/phpjobs/ Thanks! Michael Kimsal http://www.tapinternet.com/ 734-480-9961 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: [PHP] PHP vs Perl

2001-03-29 Thread Michael Kimsal
David Hynes wrote: > Hi, > > I'm new to PHP (well I used it years ago), and have been using Perl ever > since. > > Someone told me that PHP is a lot more efficient than Perl, is this true ? I > am developing a fairly large website using a MySQL database running on a > cobalt RAQ3 server and so

Re: [PHP] GZip: NS or HTTP/1.0

2001-03-30 Thread Michael Kimsal
I don't think it's anything to do with HTTP 1.0 or 1.1. It's simply the fact that NS gets a copy of the website for everything, all the time. Resized the window? OOPS! Guess I need a new copy of the file I just got 5 seconds ago! Stupid stupid stupid. I think it's simply down to the fact that

Re: [PHP] Array in Session-Vars?

2001-03-30 Thread Michael Champagne
; > Hi, > > Never tried it either, but from previous postings I remember you > should just be able to use array's with no prob's. > > (4 all I can remember i.e.) > > * R&zE: > > *** > ** Renze M

Re: [PHP] PHP Editor for Linux

2001-03-30 Thread Michael Champagne
What about the greatness of VIM? > Hi there! > > I use bluefish for HTML and PHP coding, but I'm not too happy with it. Do > you know a good PHP Editor for Linux, besides Emacs and xjed...? > > > > TIA > > > > > -- Michael Champagne, Software Engi

[PHP] PHP SITE REDESIGN - What happened to older source files?

2001-03-30 Thread Krznaric Michael
I need an older version of PHP because my pam_auth won't build with php-4.0.4pl1? With the redesign of the php site, I think they removed older source files. Can anyone confirm this, or does anyone know where I can get php-4.0.0 - 4.0.4 source files? Mike -- PHP General Mailing List (

[PHP] PHP SITE SUGGESTION

2001-03-30 Thread Michael Kimsal
With the hope that someone at php.net is listening... I understand you want to track how many downloads you've got, etc. but can you make the download more direct somehow? I can't do a wget against the php.net site to download the latest version. :( I think it's the ? in the URL that gives me

Re: [PHP] version????

2001-03-30 Thread Michael Kimsal
"Release Candidate" elias wrote: > as for the pl{x} notation, i ask what is the rc{x} notation ? > > ""Scott Fletcher"" <[EMAIL PROTECTED]> wrote in message > 9a04gk$116$[EMAIL PROTECTED]">news:9a04gk$116$[EMAIL PROTECTED]... > > Hi! > > > > Can anyone tell me what the difference with those

RE: [PHP] PHP SITE REDESIGN - What happened to older source files?

2001-03-30 Thread Krznaric Michael
disappeared Mike -Original Message- From: James Moore [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 12:18 PM To: Krznaric Michael; '[EMAIL PROTECTED]' Subject: RE: [PHP] PHP SITE REDESIGN - What happened to older source files? > I need an older version of PHP becaus

[PHP] Paying BIG e-dollars for older php source!!!

2001-03-30 Thread Krznaric Michael
I have no money, but is someone willing to provide php-4.0.3pl1.tar.gz or just anything < 4.0.4pl1 and > 4.0.0. Please just email if possible. Mike -Original Message- From: Krznaric Michael [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 3:03 PM To: '

Re: [PHP] Size Limit for PHP scripts

2001-03-30 Thread Michael Kimsal
To reiterate Cal's statement, we've not had issues with PHP size, other than speed. HUGE scripts take longer to compile and parse, but overall we've been fine. I've got scripts that are in excess of 1500 lines, which also include templates and other classes, which would often put the combined fil

Re: [PHP] sanity check please

2001-03-30 Thread Michael Kimsal
Les Neste wrote: > Hi, > > I have a question about security with PHP. I'm building a site with PHP > and some of the scripts connect to MySQL. All someone needs to do to get > my MySQL passwords is view the PHP source, right? And the recommended > approach around this is to use Zend, right?

Re: [PHP] form

2001-03-31 Thread Michael Hall
I don't think this is possible. If you're using PHP, then data must be sent to the server via a POST or GET method. As far as I know, that means using a form with submit button. Sounds like you might be thinking Javascript or something. Mick On Sat, 31 Mar 2001, LDL Enterprise wrote: > Hi all

[PHP] ereg

2001-03-31 Thread Michael Hall
I'm using the following expression to check input strings: if (!ereg("^[[:alnum:]_-]+$", $string)) { get outta here! } This works fine except for when a string has spaces, as in text. What do I need to add to the expression to handle spaces (internal, not at the beginning or end). Thanks Mick

Re: [PHP] ZEND Encoder

2001-04-01 Thread Michael Kimsal
Without getting into the specifics of the zend product, which we've not tested thoroughly, I'd hazard a wild speculation that zend encoder-encoded scripts: 1. can be decoded 2. can NOT be decoded to the original source Obviously anything encoded needs to be decoded to run, and someone with enoug

Re: [PHP] Programming Jobs

2001-04-01 Thread Michael Kimsal
Perhaps you should have taken that job. ??? I've heard (and found really) that it's easier to find work if you're working. It's harder to make interviews and whatnot, but it gets you out there, you meet others and network. Who knows where that can lead to? But if your talent is being put to u

[PHP] Need project info from developers

2001-04-01 Thread Michael Kimsal
ext couple weeks, once we have some other input from PHP developers. Thanks in advance. :) Michael Kimsal -- 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] geocities and php

2001-04-02 Thread Krznaric Michael
Try cURL http://www.php.net/manual/en/ref.curl.php You can send anything you want. Mike -Original Message- From: Joseph Bannon [mailto:[EMAIL PROTECTED]] Sent: Monday, April 02, 2001 5:36 AM To: [EMAIL PROTECTED] Subject: [PHP] geocities and php I notice that geocities does n

[PHP] Programming Jobs - what I look for.

2001-04-02 Thread Michael Kimsal
To follow up just a bit more, here are skills I would require of someone before hiring them: * Practical SQL knowledge, with hands-on experience of at least 6 months (with projects/URLs to show for it) with either MySQL, Postgres, MSSQL, Oracle, DB2 or another high-level DB system (preferably mor

RE: [PHP] PHP SITE SUGGESTION

2001-04-02 Thread Krznaric Michael
I have a suspcion that it may have to do with your shell interperting the & character. Try to quote your URL with single quotes (''). Mike -Original Message- From: Michael Kimsal [mailto:[EMAIL PROTECTED]] Sent: Friday, March 30, 2001 10:41 AM To: [EMAIL PROTECTED] Subj

Re: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread Michael Kimsal
Not sure exactly what you mean. I'm a suit who *wants* to be a techie? I'm a techie who is also a suit, if truth be told. James Moore wrote: > > * Ability to talk me through at least 2 ways of solving a data > > manipulation > > problem, without code - whiteboard/paper/hand gestures and words

Re: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread Michael Kimsal
y matter. I've been involved in too many death-marches myself to not want to go through that every week. Chris Adams wrote: > On 2 Apr 2001 06:49:02 -0700, Michael Kimsal <[EMAIL PROTECTED]> wrote: > >* Willingness to work weekends/evenings, if need be, to meet deadlines. > &

[PHP] scheduler

2001-04-02 Thread Michael Roark
Does anyone have any code which creates schedules? Like to create a works schedule or a league schedule (baseball, softball that sort of thing) -Micahel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTEC

Re: [PHP] scheduler

2001-04-02 Thread Michael Roark
While this would work. Its a service for which you pay. I was looking for a code snippet. At 02:56 PM 4/2/2001 -0400, Rick St Jean wrote: >check out > >www.ileaguemanager.com > >At 12:12 PM 4/2/01 -0500, Michael Roark wrote: >>Does anyone have any code which creates schedu

Re: [PHP] scheduler

2001-04-02 Thread Michael Kimsal
about all the features that go into it. It's NOT a 'snippet'. As you can see, you've touched a nerve here. :) Michael Roark wrote: > While this would work. Its a service for which you pay. I was looking for a > code snippet. > > At 02:56 PM 4/2/2001 -0400, Rick

Re: [PHP] scheduler

2001-04-02 Thread Michael Roark
2001 -0400, Michael Kimsal wrote: >I don't like appearing rude, but I think you need to reevaluate your >request some. What you're asking for is not a 'code snippet' - it's >an application. A fairly customized application, I'd think too. > >Write down exa

Re: [PHP] Porting ASP code to PHP

2001-04-02 Thread Michael Stearne
Maybe, but that's what version 2.0 is for! > d) create a more efficient system > Again that can come over time, get it to PHP first and then make it run better, Michael -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Re: [PHP] Porting ASP code to PHP

2001-04-02 Thread Michael Stearne
On Monday, April 2, 2001, at 05:53 PM, Mike King wrote: > > > Michael Stearne wrote: >> >> get the application running in it as soon as possible. >> >> Maybe, but that's what version 2.0 is for! >> >> >> Again that can come over time, ge

<    8   9   10   11   12   13   14   15   16   17   >