Re: [PHP] reading from files

2004-09-17 Thread Steve Brown
> I am wondering how to read lines from a file to a php array? I would like to > integrate a logfile into a html site. Is it possible to read line by line and to > check how many lines there are in total? I'm new here, so someone please tell me if "RTFM" is frowned upon as a response. :) http://w

Re: [PHP] sorting multidimensional array by a second level value

2004-09-17 Thread Steve Brown
> I'd like to sort the array based on one of the values in the field > href, description, or time. Is there a canonical way of doing this? Probably easiest to write your own sort function the use usort(), http://www.php.net/usort has pretty good documentation on how to accomplish t

Re: [PHP] mysql_connect does not connect

2004-09-17 Thread Steve Brown
the firewall. I'm sorry that you feel you know better than everyone on this list. Just try this and prove us wrong. Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Intermittent Seg Fault with PHP4.3.8 + FTP

2004-09-08 Thread Steve Brown
> ...and just for clarification... after re-reading my response to you it came > to my attention that one might assume I'm somehow involved with PHP > development. You mean you won't be the person fixing this bug?? Man, I'm screwed now! j/k ;-) No worries! -- PHP General Mailing List (http://

Re: [PHP] Intermittent Seg Fault with PHP4.3.8 + FTP

2004-09-08 Thread Steve Brown
;ve created bug #30027, so hopefully this will be addressed soon. Thanks for your help! Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Intermittent Seg Fault with PHP4.3.8 + FTP

2004-09-07 Thread Steve Brown
> 1) Environment > a) OS > b) PHP Version > c) CLI or web-based > d) Are you running php as an apache module? I'm runnning PHP 4.3.8 in CLI on Redhat 9 in this particular case. PHP compiled with --enable-ftp (among other things). PHP is installed as an Apache2 module, but (obviou

[PHP] Intermittent Seg Fault with PHP4.3.8 + FTP

2004-09-07 Thread Steve Brown
I'm using PHP to write some backup scripts. One of the scripts uses PHP to connect via FTP to a server, download some scripts and tar them up. I'm getting intermittent segmentation faults with this script, and I'm not sure what to report to troubleshoot this. Can someone tell me what would be us

Re: [PHP] xml tags interfere with php tags

2004-09-01 Thread Steve Edberg
-tags is discouraged for this, among other, reasons. -steve -- +--- my people are the people of the dessert, ---+ | Steve Edberg [EMAIL PROTECTED] | | University of California, Davis (530)754-9127 | | Progra

Re: [PHP] path info question. Was delimiter question?

2004-08-24 Thread Steve Buehler
Thank You. I didn't know where to start looking. Anyway, putting the following lines in an .htaccess file in the directory worked like a charm: AcceptPathInfo On Thanks to all who helped. Steve At 02:02 PM 8/24/2004, you wrote: > How can I make the following work on an apache 2.

[PHP] delimiter question?

2004-08-24 Thread Steve Buehler
How can I make the following work on an apache 2.0.46/php 4.3.2 installation? /dist/gogo.php/order-inventory-form.php Right now, unless it is a question mark after the gogo.php script, it will not run. Thank You Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] JSR223 / PHP 5 under Tomcat issue

2004-08-17 Thread Steve Wardell
s/web/php/test.php* on line *40 *Another page that uses libraries that are part of the JSR223 examples JAR are working fine. Anyone have any thoughts? This might have been experienced in the previous experimental servlet support that was in PHP 4. Thanks, Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: php inventory control software

2004-08-02 Thread Steve Douville
Take a look at www.oscommerce.com > Any one can suggest me a php template (or modules) of a > web-based inventory control software including a web-store. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: php & paypal

2004-07-27 Thread Steve Douville
If you have a business account there, you can use the PayPal API which does return values to you when the transaction is complete. Take a read through the PayPal docs, it's pretty well laid out there. "Mike R" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Does anyone know if it i

Re: [PHP] Efficient way to filter this string

2004-07-22 Thread Steve Edberg
tp://marc.theaimsgroup.com/?l=php-general&r=1&w=2 See http://php.he.net/preg_match and ternary operators in http://us2.php.net/language.operators for more info. - steve -- +--- my people are the people of the dessert, ---+ | Steve Edberg

Re: [PHP] Apache 2 and PHP for Production?

2004-07-20 Thread Steve Wardell
as to support both Apache versions will be greatful when 1.3 falls away as most users move over to Apache 2 in time. Steve From: Curt Zirzow <[EMAIL PROTECTED]> Date: Mon, 19 Jul 2004 23:05:50 -0400 * Thus wrote Oliver John V. Tibi: Wow! And come to think of it, how did you do it? Or sho

[PHP] Re: PHP and HTML Conventions

2004-07-12 Thread Steve Douville
I generally do all my program logic first then go to HTML. Once I start HTML, I drop in the PHP stuff where I need it. I think, but am not sure, that it also cuts down on processing time not having to parse out echo tags. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: ht

Re: [PHP] Re: make an image disappear when page loads

2004-07-05 Thread Steve Douville
I use two div tags, one encapsulating the page contents and one that holds the image. PHP turns them on or off by echoing a javascript command at the appropriate time when the data is compiled and ready to show. - Original Message - From: "Pierre" <[EMAIL PROTECTED]> To: "'Egil Berntsen'"

Re: [PHP] user-defined superglobals

2004-07-04 Thread Steve Douville
Or if you wanted it to be pretty... define('MY_DATABASE_USER', 'user'); define('MY_DATABASE_PASS', 'pass'); mysql_connect('localhost',MY_DATABASE_USER,MY_DATABASE_PASS); - Original Message - From: "John W. Holmes" <[EMAIL PROTECTED]> To: "Michael Collins" <[EMAIL PROTECTED]> Cc: <[EMAIL

[PHP] PHP cgi

2004-07-02 Thread Steve Douville
There used to be a way that stripped something from a PHP binary that drastically reduced the size of the cgi file. For the life of me, I can't remember and can't find it on google anywhere. Anyone know what it is? TIA, Steve

Re: [PHP] R: [PHP] Holding links in a database

2004-06-24 Thread Steve Douville
People with 10+ line sig's shouldn't talk about trimming posts... ;-) (or did I misunderstand what you meant about trimming posts? lol) - Original Message - From: "Jason Wong" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 24, 2004 9:36 AM Subject: Re: [PHP] R: [PHP] H

Re: [PHP] Problems with arrays

2004-06-17 Thread Steve Douville
you don't need to set $InputString at all in this loop, you could just use $element.) $element) { $InputString = "$element"; echo "$InputString\n"; } ?> Hope that helps. Steve - Original Message - From:

Re: [PHP] Problems with arrays

2004-06-17 Thread Steve Douville
Can you give us the code from to ? - Original Message - From: "Phpu" <[EMAIL PROTECTED]> To: "Steve Douville" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, June 17, 2004 9:14 AM Subject: Re: [PHP] Problems with arrays > I want the

Re: [PHP] Problems with arrays

2004-06-17 Thread Steve Douville
What are you outputting? html, text, email body...?? - Original Message - From: "Phpu" <[EMAIL PROTECTED]> To: "Oliver Hankeln" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thursday, June 17, 2004 9:06 AM Subject: Re: [PHP] Problems with arrays > I've tried this but it is not workin

[PHP] Syntax Help, Please

2004-06-15 Thread Steve Douville
I've forgotten how to assign something like this... $someStr = EOF>>>" bunch of raw non-echo'd html " EOF>>>; But can't seem to get the right syntax. Tried looking in the manual, but don't even know what I'm looking for! TIA, Steve

Re: [PHP] Erroring out?!

2004-06-14 Thread Steve Douville
query didn't return data. In your case, missing the quotes on $user, you won't return data from the query because the query is in error. Steve - Original Message - From: "Robert Sossomon" <[EMAIL PROTECTED]> To: "'PHP List'" <[EMAIL PROTECTED]&

Re: [PHP] Load a frame and work on another?

2004-06-14 Thread Steve Douville
Did you try to just echo the javascript statements instead of trying to use the header? Should have the same effect. - Original Message - From: "Robert Sossomon" <[EMAIL PROTECTED]> To: "PHP List" <[EMAIL PROTECTED]> Sent: Monday, June 14, 2004 2:32 PM Subject: [PHP] Load a frame and work

Re: [PHP] Erroring out?!

2004-06-14 Thread Steve Douville
You need to quote the $user: $query = "select * from quoteprefs where salesman = '$user'"; - Original Message - From: "Robert Sossomon" <[EMAIL PROTECTED]> To: "PHP List" <[EMAIL PROTECTED]> Sent: Monday, June 14, 2004 2:44 PM Subject: [PHP] Erroring out?! > I am trying to figure out w

Re: [PHP] PHP pros and cons

2004-06-12 Thread Steve Douville
Yes, pardon me for actually providing to the spirit of this list, to help people find ways to meet their objectives. Just saying "no" isn't very constructive, now is it? :-) "Kim Steinhaug" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Ste

Re: [PHP] Installation Question

2004-06-11 Thread Steve Douville
did you set up the mime types in apache? did you restart apache? - Original Message - From: "Marlene Thoms" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, June 12, 2004 12:37 AM Subject: [PHP] Installation Question I am running Windows XP and have installed Apache2, MyODBC,

Re: [PHP] Header target?

2004-06-11 Thread Steve Douville
e it makes sense. Steve - Original Message - From: "Bob Lockie" <[EMAIL PROTECTED]> To: "php-general Mailing List" <[EMAIL PROTECTED]> Sent: Friday, June 11, 2004 9:07 PM Subject: [PHP] Header target? > Is it possible to specify the target frame in a "

Re: [PHP] PHP pros and cons

2004-06-11 Thread Steve Douville
, CF, Perl) deployment time is about the same. Maybe a little longer for Perl. All of the 4 languages have plenty of documentation written about them. I do like CF's ability to just name data sources on the server and reference them that way. Think ASP can do the same, not sure. My 2 cents... Steve

Re: [PHP] Getting Server time

2004-06-10 Thread Steve Douville
lol -- If I get email not intended for me, it is now MY property and I'll darn well send it, copy it, distribute it as I see fit. Kinda like getting stuff in the mail you didn't order... And I guess the admins finally did something about those two autoresponders. THANKS!! - Original Message --

Re: [PHP] Getting Server time

2004-06-10 Thread Steve Douville
Since PHP is parsed on the server and not on the client machine, you should be getting the server time. You can figure out in which TZ the server is by comparing it to the time where you are. Steve - Original Message - From: "Alex Hogan" <[EMAIL PROTECTED]> To: "PHP

Re: [PHP] previous page

2004-06-09 Thread Steve Douville
Try: $_SERVER['HTTP_REFERER'] You misspelled it... - Original Message - From: "Larry E. Ullman" <[EMAIL PROTECTED]> To: "cab" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, June 09, 2004 8:46 AM Subject: Re: [PHP] previous page > > Thanks all makes sense, but, if I add th

[PHP] Squirrelmail Plug

2004-06-07 Thread Steve Douville
Kudos, kudos, kudos to the people who developed this webmail application and kudos to people who contributed plugins. Truly an easy program to install. The plugins are endless and also simple to install and configure. An excellent PHP application, highly recommended for anyone that needs a powerfu

Re: [PHP] Multiple URL Redirection

2004-06-05 Thread Steve Buehler
At 06:39 PM 6/5/2004, you wrote: Hi I have the following situation: I've got a domain that is hosted at a certain host. This host allows me to create subdomains, and also to add several domains to the same account. The thing is if I add a domain like xxx.com to my yyy.com both will be directed to

Re: [PHP] HTTP_REFERER

2004-06-04 Thread Steve Douville
lmao -- uh huh Problem was that I was using a javascript redirect and of course, that doesn't send any value. Found that out just a minute ago. New the stupid variable existed... Think I'll grab the info in js and then redirect it to the php page as part of the query string. Tha

[PHP] HTTP_REFERER

2004-06-04 Thread Steve Douville
I think I'm having a major brain fart here. Is there a $HTTP_REFERER anymore? It doesn't show up as a server variable or anything at all in phpinfo()... using php 4.3.4 Ideas? TIA, Steve

Re: [PHP] php installation verification

2004-06-02 Thread Steve Douville
Open a file. Put this code in there: Save as test.php and point your browser to it. - Original Message - From: "Nguyen, Long P (Mission Systems)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 02, 2004 4:33 PM Subject: [PHP] php installation verification > I am new

Re: [PHP] Spammers

2004-06-01 Thread Steve Douville
y would be prompted to do something about it. Oh, look, two more to delete. (I knew the risk, believe me...) ;-) - Original Message - From: "Justin Patrin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 01, 2004 1:43 PM Subject: Re: [PHP] Spammers

Re: [PHP] Spammers

2004-06-01 Thread Steve Douville
age - From: "Jay Blanchard" <[EMAIL PROTECTED]> To: "Steve Douville" <[EMAIL PROTECTED]>; "Php-General-Help" <[EMAIL PROTECTED]> Sent: Tuesday, June 01, 2004 12:01 PM Subject: RE: [PHP] Spammers [snip] Those messages are only broadcast

Re: [PHP] Spammers

2004-06-01 Thread Steve Douville
Those messages are only broadcast if you happen to send a message to the board cause people have autoresponders set. Given that there are only two and now one bad address returning a message, I find it fairly easy to just hit the delete button three times. I don't think this qualifies as spam. So,

Re: [PHP] PHP Basic's Problem with a simple script.

2004-06-01 Thread Steve Douville
This works perfectly fine for me, as is. fyi -- It doesn't matter what case "post" or "get" are in the code, the global _GET and _POST will be populated properly. - Original Message - From: "php-general" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 01, 2004 11:24 AM Su

[PHP] Socket w/SSL Issues

2004-05-31 Thread Steve Douville
: close\r\n\r\n"); fputs($fp, $request . "\r\n\r\n"); //loop through the response from the server while(!feof($fp)) { echo fgets($fp, 4096); } //close fp - we are done with it fclose($fp); } Thanks in advance. Steve

RE: [PHP] Newbie Question: Variables on the fly

2004-05-28 Thread Steve Edberg
count($dataPoint). See http://us3.php.net/manual/en/language.variables.external.php for more info on this technique. steve edberg At 01:24 AM 28/05/2004, Dennis Seavers <[EMAIL PROTECTED]> wrote: Maybe others will catch on to your intention, but I think you need to provide a bit mo

Re: [PHP] Playing with globals

2004-05-28 Thread Steve Edberg
upposed to work as an alternative to "global" statement ? Not exactly. It allows to you access variables in the global context, but it doesn't make the variable itself global; only the 'global' declaration does that. steve -- +--- my people are the p

Re: [PHP] Identifying spam text

2004-05-28 Thread Steve Edberg
;t have a pure-PHP solution, though, if that was really important to you - steve -- +--- my people are the people of the dessert, ---+ | Steve Edberg [EMAIL PROTECTED] | | University of California, Davis

Re: [PHP] dynamic table

2004-05-26 Thread Steve Douville
echo ''; echo ''; while ($myrow = mysql_fetch_array($sql)) { echo ''; echo $myrow[0]; echo ''; } echo ''; echo ''; You did say you wanted 5 COLUMNS, not rows, in your table... right? "nabil" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hiya, > > How can i draw a new AFTER F

[PHP] PHP not parsing joined tables well

2004-05-17 Thread Steve Douville
I'm got a query that is joining a few tables. select par.*, pla.*, pro.*, reg.* from parent par, players pla, registrations reg, programs pro where blah blah blah Now, a result set is the same but I'm having trouble parsing it because I have column names that are identical in two of t

[PHP] Re: Forums

2004-05-16 Thread Steve Magruder - WebCommons.org
xtensive modder community and it's slap-easy to install and get running. -- Steve Magruder www.webcommons.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] File_exists result cached over a session?

2004-05-16 Thread Steve Magruder - WebCommons.org
Marek Kilimajer wrote: > Steve Magruder - WebCommons.org wrote: >> File_exists results (and the results from other file-related >> functions) are cached (according to the php doc) during the run of a >> script. For instance, if file_exists returns True for a file once, >

[PHP] File_exists result cached over a session?

2004-05-16 Thread Steve Magruder - WebCommons.org
ed to know is whether this caching works over a session (not just during a single script run). Thanks. -- Steve Magruder www.webcommons.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] dynamically building insert/update forms from db

2004-05-14 Thread Steve Douville
When you do a describe (desc tablename) it returns the type and length of the field in the database as part of the result set. You can parse that out and determine what kind of an input field to generate. - Original Message - From: "Edward Peloke" <[EMAIL PROTECTED]> To:

Re: [PHP] dynamically building insert/update forms from db

2004-05-14 Thread Steve Douville
Why don't you have your script do a desc on the table you pass to it, parse the results, and populate the data needed for your form building class? - Original Message - From: "Edward Peloke" <[EMAIL PROTECTED]> To: "Php-General" <[EMAIL PROTECTED]> Sent: Friday, May 14, 2004 9:37 AM Subjec

Re: [PHP] variable passing using URL

2004-05-13 Thread Steve Douville
Capture the variables you've sent to the main frame page and send them via the url of the frames. Hope that helps. - Original Message - From: "gowthaman ramasamy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 14, 2004 2:24 AM Subject: [PHP] variable passing using URL

[PHP] Variables Help

2004-05-13 Thread Steve Douville
Is there a variable that I can call that will return an array with any variables I have set? I'd want to call it and then parse and display current values of, in this case, a and b. Hope that makes sense. TIA

[PHP] Apache 2 was: Re: [PHP] Re: PHP & Apache Version

2004-05-05 Thread Steve Wardell
use..." is not productive. Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] string replace in files

2004-04-30 Thread Steve Buehler
At 11:27 AM 4/30/2004, John W. Holmes wrote: From: "Steve Buehler" <[EMAIL PROTECTED]> > #!/usr/bin/php > $strtoreplace="require \"http://www.domain.com/";; > $replacewithstring="require \"/home/domain/www/"; > > replaces

[PHP] string replace in files

2004-04-30 Thread Steve Buehler
gh to do that. I am hoping that someone out there has an easy response to this. Below is the code that I have so far. Thanks Steve #!/usr/bin/php http://www.domain.com/";; $replacewithstring="require \"/home/domain/www/"; replacestring(); function replacestrin

RE: [PHP] File upload progress

2004-04-06 Thread Steve Murphy
think about it. My proposal to include this at the HTTP spec level would solve all the problems presented. Then we could get on with fun sh*t like skinning the meter and making Apache 2 and PHP 5 thread safe so we can all upgrade. Steve -Original Message- From: Curt Zirzow [mailto:[

RE: [PHP] File upload progress

2004-04-06 Thread Steve Murphy
this function in 4.4. Steve -Original Message- From: Jeff McKeon [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 5:18 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP] File upload progress > > I posted about this the other day. I was directed to look at > m

RE: [PHP] File upload progress

2004-04-06 Thread Steve Murphy
like with downloads. Does anyone else think its time to rewrite all the protocols? Sorry for the rant, stuff like this bugs the hell out of me. Steve -Original Message- From: Jeff McKeon [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 4:40 PM To: [EMAIL PROTECTED] Subject

[PHP] cURL upload meter

2004-04-05 Thread Steve Murphy
Can cURL be used to create an HTTP or FTP upload meter? Steve

[PHP] You Win - 0

2004-04-01 Thread Steve Timmons
Hello, This is Steve from Warp2Casino. You visited one of our partner casino sites last year, so I wanted to make you aware of our newest launch, Warp2Casino. If you want to come check it out, I'll give you $25 to play with in a real money account. You don't have to make any purch

[PHP] Quote for Job

2004-04-01 Thread Steve Buehler
to, Squirrelmail or many of the other email clients out there would work just fine. Thank You Steve Buehler -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [Q] PHP code embedded in html files - What happens?

2004-03-14 Thread Steve Edberg
php3 .php to this AddType application/x-httpd-php3 .php .html See http://www.php.net/manual/en/install.apache.php for more info. steve -- +--- my people are the people of the dessert, ---+ | Steve Edberg [EMAIL PROTECTED] | | Univer

[PHP] PHP and determining Business days.

2004-02-29 Thread Steve
Does anyone know of any PHP scripts that can calculate US Business days ( as well as add and subtracting based on whether a day is a business day or not?) or will I need to write something myself? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.p

[PHP] making 1 pdf file from 2

2004-02-25 Thread Steve Buehler
lib. Thanks in Advance Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] beginners question

2004-02-23 Thread Steve
I have this code $var=$_POST['Stock']; in one page further down in the code, if certain conditions are met, I want the user to click on a link that will take them to a form to fill in some info. I need to have the data that is in $var passed along to that new url. So I have $var=$_POST['Stock

[PHP] Re: XSLT in php v5 beta 4

2004-02-20 Thread Steve Dieke
bxml2 2.6.6 and libxslt 1.1.3 both of which reside in the location mentioned in the configure line above. Thanks again for you response I really appreciate it. I will give the DOM XSLT a try this weekend. Steve "Lucian Cozma" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROT

[PHP] XSLT in php v5 beta 4

2004-02-19 Thread Steve Dieke
s the following: Fedora Core 1 php - version 5 beta 4 apache - 2.0.48 Anyone have any ideas? I have looked at the articles on php.net and didn't see anything that I thought would help. Thanks, Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: sql query question

2004-02-12 Thread Steve Solomon
select * from table where locate("new",descript)>0 or locate("car",descript)>0; "Tony" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] hi if i have new car and i want to search each word in description can i do SELECT * FROM table WHERE descript = "new" OR descript ="car"?? any hel

[PHP] PHP Meetup and new Software Developers Meetup

2004-01-22 Thread Steve Magruder - WebCommons.org
form a PHP users group in Louisville, KY. Those interested should join the PHP meetup first, then we'll all go from there. -- Steve Magruder www.webcommons.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can you recommend a good PHP includes tutorial?

2004-01-14 Thread Steve Edberg
subdirectory level. Of course, if you need to include() in the middle of a page, or conditionally include files, these won't work - steve At 5:16 AM -0800 1/14/04, Freedomware wrote: Wow, that is a lot simpler than I imagined. Thanks for the tip! Jay Blanchard wrote: [snip] I thought this would b

Re: [PHP] Display syslog file?

2004-01-09 Thread Steve Edberg
..although there might be socket_blocking or page flush() issues to experiment with - steve At 8:28 AM -0600 1/9/04, Carlton L. Whitmore wrote: I didn't make my last request very clear. I used lastlog as an example, but what I really want to do is open a syslog file (text file), that is coming

[PHP] Can't Access PHP Includes Above Current Directory if using SSL

2003-12-29 Thread Steve Benson
27;ve been unable to find it and would ask for anyone who may be able to help to please give suggestions on what directive(s) are causing this. I'd really appreciate a point in the right direction on a resolution. Thanks for your help, .. Steve

[PHP] Cannot Access Includes Above Current Directory if using SSL

2003-12-24 Thread Steve Benson
;t reference a file up one level. If I'm three levels deep I can't reference files back on level two, bummer! I appreciate any suggestions. Thanks, Steve

[PHP] Cannot Access Includes Above Current Directory if using SSL

2003-12-24 Thread Steve Benson
;t reference a file up one level. If I'm three levels deep I can't reference files back on level two, bummer! I appreciate any suggestions. Thanks, Steve

RE: [PHP] Re: progress in PHP

2003-12-23 Thread Steve Murphy
site which gives an example php.ini file. I've tested the meter with a 160MB file on 128MB RAM 500Mhz K6 system. The download also includes sample HTML code. I'm working on adding CSS to customize the look a little more. Hope this will answer some questions. Steve -Original Me

RE: [PHP] Re: progress in PHP

2003-12-22 Thread Steve Murphy
Well its actually a pure PHP upload meter it just uses JS to open the window. You could make PHP open the window as well with a little tweaking. -Original Message- From: David T-G [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 3:16 PM To: [EMAIL PROTECTED] Cc: Steve Murphy

RE: [PHP] Re: progress in php (was "Re: [PHP] Working pop-up progress window")

2003-12-22 Thread Steve Murphy
David, A window will popup with the progress meter. Obviously don't block popups and try using a larger file if you have a high speed line, it takes a second for the meter to start and if the upload is done it won't popup properly. Steve -Original Message- From: David T

RE: [PHP] Working pop-up progress window

2003-12-22 Thread Steve Murphy
recompile PHP but its a very convenient tool that many of my clients ask for, enjoy. Steve -Original Message- From: Ed Curtis [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 12:19 PM To: [EMAIL PROTECTED] Subject: [PHP] Working pop-up progress window I've read throug

[PHP] Session Link Problems

2003-12-11 Thread Steve Turner
Take a look if you are confused. The link to the site is http://www.designoriginalsbykim.com. Thanks for any help you may be able to give. Steve Turner Fort Collins, CO http://www.SteveOnWeb.com The session part of phpinfo() is session Session Support enabled Registered save h

[PHP] PHP to HTML

2003-12-08 Thread Steve Marquez
Greetings! Is there a way to have PHP write an HTML file? What I would like to do is have a user fill out a form, then have the information write an HTML file and then save the file either for the first time, or overwrite the existing one. I hope this makes sense. Can anyone help? -- Steve

[PHP] Uploaded Picture Name

2003-12-06 Thread Steve Turner
I am having a slight problem with a picture upload script. I seems to work just fine except when the picture name has an apostrphe in the name. How do all of you deal with this problem. Do you just rename the file to something else when you upload it. Here is the script that I am using. It is calle

[PHP] Max Upload FIle Size

2003-12-05 Thread Steve Vernon
Hello, I have search google, and PHP but I cannot find properly how to set the maximum post upload size as 200Kb? Do I use 200K or 200KB for post_max_size? THANKS Steve -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Variables scope question

2003-12-04 Thread Steve Fulleylove
site) variable, you should use a session variable. Regards, Steve "Mike D" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, > > I have recently noticed something that I wasn't aware of until now. I have > index.php which contains include1.txt a

[PHP] function array problems

2003-12-01 Thread Steve Turner
Hi, Having some problems with multi-dimentional arrays. I am creatng an array using some database data, and adding stuff like an image tag, and hyperlink. Then passing this to another function that creates an Html table from an array. Here is the function to create the table from an a

RE: [PHP] stepping through alphabet

2003-11-19 Thread Steve Buehler
} Amazing what I learned today. :) I love this list and its people. Thanks for your help Steve At 08:15 AM 11/19/2003, you wrote: Create a $letters array and the loop through it like this: $letters=array('A','B','C','D','E','F','G

Re: [PHP] stepping through alphabet

2003-11-19 Thread Steve Buehler
7;, $i = 0; $i <= 25; $letter++, $i++ ){ echo "$letter "; } Thank You So Much Steve At 08:27 AM 11/19/2003, you wrote: Sophie Mattoug wrote: Maybe you can try this for ($letter = 'A'; $letter++; $letter <= 'Z') echo "$letter\n&q

RE: [PHP] stepping through alphabet

2003-11-19 Thread Steve Buehler
e like this now: $letter='A'; for($i=0;$i<=25;$i++){ echo $letter++." "; } Thank You So Much Steve At 08:24 AM 11/19/2003, you wrote: [snip] for ($letter = 'A'; $letter++; $letter <= 'Z') echo "$letter\n"; [/sni

[PHP] stepping through alphabet

2003-11-19 Thread Steve Buehler
I could just create a link for each letter, but I would like to learn to do this so that I can make code shorter. Putting each letter into an array and steping through the array will work, but can it be done by telling a loop to start at A and end at Z? Thanks Steve -- PHP General Mailing List

RE: [PHP] Looking for Spam free php form

2003-11-17 Thread Steve Murphy
Is this what your looking for? http://www.pfohlsolutions.com/projects/mailer/ -Original Message- From: Philip Olson [mailto:[EMAIL PROTECTED] Sent: Monday, November 17, 2003 1:08 PM To: Chris Boget Cc: David Buchmueller; PHP General Subject: Re: [PHP] Looking for Spam free php form > > I

[PHP] Calendar

2003-11-12 Thread Steve Marquez
Hi, I am looking for a simple easy to edit php calendar program. Does anyone know where I can find one? Thanks for your help. -- Steve Marquez [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP meetup and new Software Developers meetup

2003-11-10 Thread Steve Magruder - WebCommons.org
27;m still trying to form a PHP users group in Louisville, KY. Those interested should join the PHP meetup first, then we'll all go from there. -- Steve Magruder www.webcommons.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Random Character Generator

2003-11-10 Thread Steve Edberg
http://www.php.net/manual/en/language.types.string.php#language.types.string.parsing -steve At 04:32 PM 11/10/03, Jason Williard wrote: I would like to have a script that randomly generates alpha-numeric characters. Does anyone know of any scripts that can do this or perhaps the basic code to generate

Re: [PHP] Problems with session_id() in Windows?

2003-11-09 Thread Steve Buehler
atever Web Server you are running after making this change. Steve At 12:10 AM 11/9/2003, you wrote: Hello all: We recently ported an application from Linux to Windows and had a few sessions-handling issues (we were going from PHP 4.1.2 Linxu to PHP 4.3.3 Windows). We traced this to PHP&#x

[PHP] Problems with session_id() in Windows?

2003-11-08 Thread Steve Lane
ected. Has anyone seen or heard of this? The notes in the docs didn't tell me anything special about this. -- steve lane -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: PHP developers

2003-11-07 Thread Steve Magruder - WebCommons.org
Jason Wong wrote: > On Saturday 08 November 2003 01:42, Steve Magruder wrote: > >> At any rate, I recommend avoiding all those job bidding sites... >> can you really trust the guys in far off places who charge $5 an >> hour? > > Well, as long you pay after seeing

[PHP] Re: PHP developers

2003-11-07 Thread Steve Magruder
nal US cities with low costs of living. :) -- Steve Magruder www.webcommons.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3   4   5   6   7   8   9   10   >