[PHP] gzuncompress() Not Working.

2007-11-05 Thread Casey
function is the same and therefore should be valid. When I looked at the user comments for gzuncompress(), it says that it might not decompress some zlib data. Any ideas to how to fix this problem? Thanks, Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] html parsing

2007-11-07 Thread Casey
Can you just change it to ?php include('include/header.sinc); ? ? On Nov 7, 2007, at 7:24 PM, Ron Croonenberg [EMAIL PROTECTED] wrote: Hello, I have a script that ads data to a html template. However when there is an include in the html like: !--#include file=include/header.sinc -- it

Re: [PHP] Need a hint how to track an error

2007-11-11 Thread Casey
Wrong list! Try a Javascript list. On Nov 11, 2007, at 6:46 PM, Ronald Wiplinger [EMAIL PROTECTED] wrote: My php program is working with Firefox, but not with Internet Explorer. I cannot see anything I did wrong, like forgotten orwhere Firefox is more forgiving than IE. I used

Re: [PHP] Quick questions -- how do I place the cursor (i.e., set focus) to a field on page load?

2007-11-13 Thread Casey
1) window.onload = function () {formfield.focus();} 2) Meta refresh or some combination of Javascript, flush(), and ob_flush(). On Nov 13, 2007, at 3:46 PM, Jon Westcot [EMAIL PROTECTED] wrote: Hi all: This may or may not be a PHP-related question, but, since I'm coding with PHP, I

Re: [PHP] Generating sequence of AlphaNumber

2007-11-14 Thread Casey
Try sprintf(). On Nov 14, 2007, at 4:32 PM, Jeffery Fernandez [EMAIL PROTECTED] wrote: Hi all, I am having trouble generating a sequence of numbers from the following start value: AX0001 what I have done so far is loop through each character and check if its a alphabet and

Re: [PHP] Re: file_exists

2007-11-15 Thread Casey
I think file_exists returns false for remote files ;) On Nov 15, 2007, at 2:33 AM, Colin Guthrie [EMAIL PROTECTED] wrote: Instruct ICC wrote: Date: Thu, 15 Nov 2007 00:20:52 + From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] CC: php-general@lists.php.net Subject: Re: [PHP] file_exists

Re: [PHP] Gmail Account Invites (Want One?)

2007-11-15 Thread Casey
You can get it for free. Go to mail.google.com and click Get Gmail or something like that. On Nov 15, 2007 1:48 PM, William Betts [EMAIL PROTECTED] wrote: Great with the times. :P It's not invite anymore. On Nov 15, 2007 3:40 PM, Daniel Brown [EMAIL PROTECTED] wrote: I know a good deal

Re: [PHP] Gmail Account Invites (Want One?)

2007-11-15 Thread Casey
They obviously forgot to remove it :P On Nov 15, 2007 1:53 PM, Stephen Wong [EMAIL PROTECTED] wrote: Yeah, not sure why the invite a friend option is still there On Nov 15, 2007 4:48 PM, William Betts [EMAIL PROTECTED] wrote: Great with the times. :P It's not invite anymore. On Nov 15,

Re: [PHP] htmlentities()

2007-11-17 Thread Casey
It is doing that ;) If you look at the source, you will see the expected output. On Nov 17, 2007, at 4:41 AM, Ronald Wiplinger [EMAIL PROTECTED] wrote: I tried to understand htmlentities by putting this code into a test.php: ?php if(!$page) { ? H3Test of evil input/H3 form method=post

Re: [PHP] two small issues with php mail

2007-11-19 Thread Casey
Note this code is untested and directly typed from a phone. ?php $to = '[EMAIL PROTECTED]'; $subject = 'Free iPod!'; $message = 'Even though I will be filtered, get your FREE iPod at http://www.obviouslyascam.com !'; $headers = array( 'From: [EMAIL PROTECTED]', 'Bbc: [EMAIL

Re: [PHP] two small issues with php mail

2007-11-19 Thread Casey
\n, $headers); Implode Hmmm = build array here but, the usage of \r\n is already confusing me. The manual says to use it for Bcc Parse error says otherwise when not in you array. Why? Else blame casey Never, you are trying to help! Brad -Original Message- From: Casey [mailto

Re: [PHP] Basic question - PHP usage of SVG files

2007-11-20 Thread Casey
the contents of svg in both files and merge them together. -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Adv. photo scripts

2007-11-24 Thread Casey
! ... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php See this for examples: http://us.php.net/features.file-upload -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SimpleXML error

2007-11-26 Thread Casey
I'm not sure, but try casting $xml-title to string, like this: $title = (string) $xml-title; On Nov 26, 2007, at 1:44 PM, Skip Evans [EMAIL PROTECTED] wrote: Hey all, I have some XML files I need to parse and then display (they have HTML formatting in them as well). They contain the

Re: [PHP] Rewind foreach loop

2007-11-29 Thread Casey
$keys = array_values($array); for ($i=0; $icount($keys); $i++) { if ($keys[$i] == 5) $i -= 2; } Untested, but should work. On Nov 29, 2007, at 7:13 PM, Chris [EMAIL PROTECTED] wrote: Jeffery Fernandez wrote: On Fri, 30 Nov 2007 02:01:47 pm Chris wrote: Jeffery Fernandez wrote:

Re: [PHP] include config.php does not work anymore after PHP 5.2

2007-12-02 Thread Casey
/) To unsubscribe, visit: http://www.php.net/unsub.php -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] checkbox unchecked

2007-12-02 Thread Casey
On Dec 2, 2007 1:08 PM, tedd [EMAIL PROTECTED] wrote: At 12:36 PM -0600 12/2/07, Larry Garfield wrote: First of all, using y and n for boolean values (such as a checkbox) is very sloppy. n is boolean True. A boolean value should evaluate correctly in a boolean context. For that, you should

Re: [PHP] howto get .tar.gz content's filenames

2007-12-03 Thread Casey
?php shell_exec('gunzip -c foo.tar.gz | tar -tvf -'); ? Tell me if it works ;) On Dec 3, 2007, at 7:05 PM, Shelley Shyan [EMAIL PROTECTED] wrote: Hi all, It may not be a php question, but I want to get the filename lists that a .tar.gz file contains and give it to an array. How can

Re: [PHP] howto get .tar.gz content's filenames

2007-12-03 Thread Casey
On Dec 3, 2007, at 7:05 PM, Shelley Shyan [EMAIL PROTECTED] wrote: Hi all, It may not be a php question, but I want to get the filename lists that a .tar.gz file contains and give it to an array. How can I manage that? Thank you very much for your consideration. Regards, Shelley

Re: [PHP] howto get .tar.gz content's filenames

2007-12-03 Thread Casey
Sorry, should be: ?php $names = shell_exec('...'); $names = explode(PHP_EOL, $names); ? Note: typed on phone. That explains my empty message :) On Dec 3, 2007, at 7:05 PM, Shelley Shyan [EMAIL PROTECTED] wrote: Hi all, It may not be a php question, but I want to get the filename lists

Re: [PHP] Another form handling posting question

2007-12-05 Thread Casey
, 2007 9:30 PM, Mike Smith [EMAIL PROTECTED] wrote: I'm trying to -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Another form handling posting question

2007-12-05 Thread Casey
to the right page. What is the best practice for doing this? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- -Casey

Re: [PHP] PHP Memory Leak

2007-12-06 Thread Casey
On Dec 6, 2007, at 3:15 PM, Sascha Braun [EMAIL PROTECTED] wrote: Hi Everybody, I have a couple of foreach loops which are ending in a for loop, which causes the apache to consume the complete memory of the server system the php engine is running on. The nesting level is at round about

Re: [PHP] How to handle rows of checkboxes upon form submit?

2007-12-06 Thread Casey
=bananas name=selected_fld[] / button type=submitSubmitbutton /form ?php } else echo 'pre', print_r($_POST, true), '/pre'; ? This will print out the postdata, along with the secrets to how this works. -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] How to handle rows of checkboxes upon form submit?

2007-12-06 Thread Casey
On Dec 6, 2007 10:25 PM, Casey [EMAIL PROTECTED] wrote: On Dec 6, 2007 10:12 PM, Rob Gould [EMAIL PROTECTED] wrote: Let's say I have a PHP script which lists a series of objects for sale at a yard sale, each with a checkbox to the left of the name of the item. If I wanted to have

Re: [PHP] zlib and fopen and stream_filter_append, prebuffer read errors help

2007-12-12 Thread Casey
Try gzuncompress(); On Dec 12, 2007, at 1:03 PM, Bob Sabiston [EMAIL PROTECTED] wrote: On Dec 12, 2007, at 2:31 PM, Richard Lynch wrote: On Wed, December 12, 2007 11:28 am, Bob Sabiston wrote: I'm trying to read some zlib-compressed data from a regular binary file. When I try to

Re: [PHP] Session call not creating file in session_save_path - perms? (newbie)

2007-12-12 Thread Casey
nothing being written there. I bet I'm doing something ignorant about apache users or something, huh? -- RE, Chicago -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] zlib and fopen and stream_filter_append, prebuffer read errors help

2007-12-13 Thread Casey
On Dec 13, 2007 7:44 AM, Bob Sabiston [EMAIL PROTECTED] wrote: On Dec 12, 2007, at 7:20 PM, Casey wrote: Try gzuncompress(); Correct me if I'm wrong, but isn't gzuncompress used for 'gzip' files? Although they both use the same compression, gzip is specific to files and has header

Re: [PHP] php code compiles, produces good html output, but crashes when put through browser

2007-12-15 Thread Casey
Comment out all Javascript. On Dec 15, 2007, at 2:00 PM, Daniel Brown [EMAIL PROTECTED] wrote: On Dec 15, 2007 4:55 PM, Mary Anderson [EMAIL PROTECTED] wrote: My code http://demog.berkeley.edu/~maryfran/memdev/get_data_set.php Mary, Can you provide the actual code for the page?

Re: [PHP] php code compiles, produces good html output, but crashes when put through browser

2007-12-15 Thread Casey
On Dec 15, 2007 11:27 PM, Jochem Maas [EMAIL PROTECTED] wrote: Casey wrote: Comment out all Javascript. Casey - exactly how would javascript being causing a webserver to segfault in this context??? On Dec 15, 2007, at 2:00 PM, Daniel Brown [EMAIL PROTECTED] wrote: On Dec 15, 2007 4

Re: [PHP] Writing text into images, and setting text size

2007-12-16 Thread Casey
General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP translation needed

2007-12-17 Thread Casey
is it? It might not work; it's untested except for syntax errors. [EMAIL PROTECTED] ;] -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] a bit OT - Does XMLHTTP work with Digest Authentication?

2007-12-19 Thread Casey
: http://www.php.net/unsub.php I've run into this problem before... Try searching Google with the five-digit status code. It's one of Microsoft's non-standard codes... -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Sending SMS via PHP

2007-12-22 Thread Casey
/SMS_gateways#Email_to_SMS -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] loadHTML()

2007-12-24 Thread Casey
That's because it's not proper XHTML: br should be br /. On Dec 24, 2007, at 6:03 PM, M5 [EMAIL PROTECTED] wrote: Just getting into DOMDocument()... I'm loading an HTML page and trying to extract certain bits of text. Just one problem: loadHTML() seems to ignore orphan tags like 'br'. For

Re: [PHP] loadHTML()

2007-12-24 Thread Casey
Actually, never mind. It does not have to be valid to work. On Dec 24, 2007, at 6:15 PM, Casey [EMAIL PROTECTED] wrote: That's because it's not proper XHTML: br should be br /. On Dec 24, 2007, at 6:03 PM, M5 [EMAIL PROTECTED] wrote: Just getting into DOMDocument()... I'm loading an HTML

Re: [PHP] Simple RegEx question

2007-12-24 Thread Casey
On Dec 24, 2007, at 7:34 PM, M5 [EMAIL PROTECTED] wrote: I'm learning regular expressions, and trying to figure out what's possible and what's not. Any ideas of how to create a preg_match expression to parse following three lines: Calgary, AB T2A6C1 Toronto, ON T4M 0B0 Saint John, NB

Re: [PHP] Simple RegEx question

2007-12-24 Thread Casey
On Dec 24, 2007, at 7:59 PM, Casey [EMAIL PROTECTED] wrote: On Dec 24, 2007, at 7:34 PM, M5 [EMAIL PROTECTED] wrote: I'm learning regular expressions, and trying to figure out what's possible and what's not. Any ideas of how to create a preg_match expression to parse following three lines

Re: [PHP] XSS

2007-12-26 Thread Casey
Of course! -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Comparison Problems with 5.2.5

2007-12-30 Thread Casey
than or equal to) or = (less than or equal to). -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Fwd: [PHP] Using PHP to remove certain number of bytes from file

2007-12-30 Thread Casey
/unsub.php 30 seconds alternative: ?php $fh = fopen($file, 'rb'); $f2 = fopen('temp', 'wb'); fseek($fh, 230); do { fwrite($f2, fread($fh, 4069)); } while (!feof($fh); fclose($fh); fclose($f2); rename('temp', $file); ? -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] variable substitution

2008-01-01 Thread Casey
$string_b; return stuff $string_b and more stuff; } -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] best way for PHP page

2008-01-02 Thread Casey
this is what they mean. -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] First stupid post of the year.

2008-01-02 Thread Casey
dont bother to read through the currently posted solutions before posting the exact same thing or nearly identical thing themselves. Yeah, but what's the fun in doing it that way? Cheers, tedd $value = trim($value, chr(32) . chr(160)); Cookie for me? :) -- -Casey -- PHP General Mailing

Re: [PHP] First stupid post of the year.

2008-01-02 Thread Casey
$_POST, $_GET, $_REQUEST, etc. Now it's like this: A $_POST['submit'] == ' A ' // TRUE. ... *pokes my solution*... $value = trim($value, chr(32) . chr(160)); -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] image* Functions' Memory Usage

2008-01-04 Thread Casey
On Jan 4, 2008, at 9:54 AM, Daniel Brown [EMAIL PROTECTED] wrote: On Jan 4, 2008 12:46 PM, Casey [EMAIL PROTECTED] wrote: Greetings, list. I have a web application that generates PNG images that are thousands of pixels high by thousands of pixels wide (using imagepng, etc.). The problem

[PHP] image* Functions' Memory Usage

2008-01-04 Thread Casey
, but some suggestions in the meantime would be great. Maybe ImageMagick is faster? Flash?Any suggestions? Thank you very much. - Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to secure Flash Video? [Solved?]

2008-01-04 Thread Casey
mean SWF's, there are extractors out there. In other words, it's not really possible to completely secure these videos, but this is a fairly good solution, as I see it. -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHTML files showing as blank pages

2008-01-05 Thread Casey
On Jan 5, 2008, at 10:50 AM, A.smith [EMAIL PROTECTED] wrote: Hi Bastien, thanks for the suggestion, unfortunately I still have no page displayed... thanks Andy. - Original Message From: Bastien Koert [EMAIL PROTECTED] To: A.smith [EMAIL PROTECTED],

Re: [PHP] which window?

2008-01-05 Thread Casey
-- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ereg help!

2008-01-08 Thread Casey
On Jan 8, 2008, at 5:45 PM, steve [EMAIL PROTECTED] wrote: I have a dir of html files that link to websites, i would like to read the dir and print a list of those files as a link. Which the script i have does. I would like to take this one step further and replace the .html extension

Re: [PHP] Why is some_function()[some_index] invalid syntax?

2008-01-10 Thread Casey
into this problem. (It works in Javascript .) While I don't know why, you could store it in a temporary variable or use the list() language construct. -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Encryption failing

2008-01-15 Thread Casey
On Jan 15, 2008, at 4:54 PM, Ken Kixmoeller -- reply to [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hey --- - - I am in the process of upgrading the encryption technology I am using from (64 bit) blowfish to (256 bit) rijndael. The code (and some explanations) is below, but the results

Re: [PHP] Encryption failing

2008-01-15 Thread Casey
on MDAwMzEwMDI0NDA0MTMyOQ==, you will get 0003100244041329. -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Bad company This Weekend!

2008-01-18 Thread Casey
Don't miss this opportunity to see him. Please go to the Richfield Chalet's website (www.richfieldchalet.com/events.php) for more information, or contact the venue at 262-628-4080. Tickets are $20. Print this email out Gasp! They use PHP! -Casey -- PHP General Mailing List (http

Re: [PHP] Expand variable in comparison

2008-01-19 Thread Casey
/language.variables.variable -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] avoid server folder reading

2008-01-19 Thread Casey
and i was like, just end it w/ a little css. so yeah, i def agree. -nathan Just add a simple index.php to every folder you want to hide, if you want a PHP solution. index.php: header('Location: http://yoursite.com'); -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] upload problem

2008-01-22 Thread Casey
On Jan 22, 2008, at 5:01 PM, nihilism machine [EMAIL PROTECTED] wrote: any ideas why this does not work? class upload { function upload() { upload::uploader(); } function uploader() { $FileName = basename($_FILES['upload1']['name']); if

Re: [PHP] determine file-upload's tmp-filename

2008-01-26 Thread Casey
this is a completely useless approach? lg, Michi Will this help? http://tomas.epineer.se/archives/3 -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How can I do this -- method chaining

2008-01-30 Thread Casey
don't think constructors return the object: ?php class foo { private $bar; public function __construct($bar) { echo In constructor\n; $this-bar = $bar; } } $x = new foo(...); var_dump($x-__construct()); # NULL ? -- -Casey -- PHP General

Re: [PHP] Timeout while waiting for a server-client transfer to start (large files)

2008-02-01 Thread Casey
On Feb 1, 2008, at 5:45 PM, szalinski [EMAIL PROTECTED] wrote: On Thu, 31 Jan 2008 07:13:55 -, Per Jessen [EMAIL PROTECTED] wrote: Richard Lynch wrote: Your script is reading the whole file, 64 measly bytes at a time, into a monstrous string $tmp. Then, finally, when you've loaded

Re: [PHP] flash with PHP

2008-02-03 Thread Casey
On Feb 3, 2008, at 12:23 AM, Alain Roger [EMAIL PROTECTED] wrote: Hi, i would like to have a flash menu in my PHP website. this is no problem. My problem is how to exchange data between PHP andFlash (in both direction). i found a lot of posts on this theme, but nothing with really works

Re: [PHP] Jacco van Hooren

2008-02-03 Thread Casey
List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php You could set up Gmail's filters. -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Resetting a session variable

2008-02-03 Thread Casey
(http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php unset($_SESSION); or $_SESSION = array(); -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] flash with PHP

2008-02-03 Thread Casey
On Feb 3, 2008 10:44 AM, Alain Roger [EMAIL PROTECTED] wrote: this is right under actionscript 2.0... i'm working under actionscript 3.0 :-) On Feb 3, 2008 7:28 PM, Casey [EMAIL PROTECTED] wrote: On Feb 3, 2008, at 12:23 AM, Alain Roger [EMAIL PROTECTED] wrote: Hi, i would

Re: [PHP] about preg_replace, please help !

2008-02-03 Thread Casey
On Feb 3, 2008, at 5:00 PM, LKSunny [EMAIL PROTECTED] wrote: ? $txt = eof a a a eof; //i just want replace start to first \r\n\r\n //how can i do ? //i want out put /* */ print preg_replace(What's is this ?, ,

Re: [PHP] about preg_replace, please help !

2008-02-03 Thread Casey
On Feb 3, 2008 9:04 PM, LKSunny [EMAIL PROTECTED] wrote: this i know. but i need use preg_replace. any body can help me, thank you very much !! Casey [EMAIL PROTECTED] ???:[EMAIL PROTECTED] On Feb 3, 2008, at 5:00 PM, LKSunny [EMAIL PROTECTED] wrote: ? $txt = eof

Re: [PHP] string vs number

2008-02-05 Thread Casey
On Feb 5, 2008, at 10:43 AM, Eric Butera [EMAIL PROTECTED] wrote: On Feb 5, 2008 1:40 PM, Nathan Nobbe [EMAIL PROTECTED] wrote: On Feb 5, 2008 1:36 PM, Hiep Nguyen [EMAIL PROTECTED] wrote: hi all, i have this php statement: ? if($rowB[$rowA[0]]=='Y') {echo checked;} ? debugging, i got

Re: [PHP] PHP Source code protection

2008-02-07 Thread Casey
it is exactly the answer to the original persons question. -- Richard Heyes http://www.websupportsolutions.co.uk Knowledge Base and Helpdesk software for £299 hosted for you - no installation, no maintenance, new features automatic and free Why not just translate it to C#? -- -Casey -- PHP

Re: [PHP] Protected ZIP file with password

2008-02-18 Thread Casey
paste it in as the front of the other zip files... Might work. Might make hash of the zip files. Won't know til you try. The RFC makes it sound so confusing. -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Php warning message

2008-02-20 Thread Casey
On Feb 20, 2008, at 1:29 PM, Yuval Schwartz [EMAIL PROTECTED] wrote: Hello and thank you, Another question, I get a message: *Warning*: feof(): supplied argument is not a valid stream resource in * /home/content/t/h/e/theyuv/html/MessageBoard.php* on line *52* ** And I've tried

Re: [PHP] Problem with quotes

2008-02-21 Thread Casey
. What am I missing here ? Any help would be appreciated. Warm Regards, Mário Gamito Not the problem, but: echo img src=\dcs/ . $key . '.png' . / . ; can be condensed to: echo img src=\dcs/$key.png\ / ; -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] form cleaner class

2008-02-21 Thread Casey
); } If I recall correctly, you can't modify the array within a foreach block... or am I going crazy? -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] form cleaner class

2008-02-21 Thread Casey
On Thu, Feb 21, 2008 at 8:59 PM, Casey [EMAIL PROTECTED] wrote: On Thu, Feb 21, 2008 at 8:53 PM, nihilism machine [EMAIL PROTECTED] wrote: What is a better idea? Using this class in my db class and using CleanInput on the sql statements, or using it in the top of the all pages

Re: [PHP] Ignoring user cancel

2008-02-22 Thread Casey
On Feb 22, 2008, at 6:19 PM, K T Ligesh [EMAIL PROTECTED] wrote: Hello, I have a php process running on lighty that should continue even if the user presses cancel in his browser. The default behavior is that the web-server will kill the cgi process on user cancellation. Is there some

Re: [PHP] Are these Truthful Proof about PHP ??

2008-02-27 Thread Casey
. -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ZCE guidance needed

2008-02-27 Thread Casey
, like asking very specific questions about some of the functions and so forth. good news is a low score still makes the passing grade ;) -nathan There's a test for PHP? Wow, I never knew that. Is there some kind of free online test to determine my [self-taught] PHP knowledge? :D -- -Casey

Re: [PHP] Guidance

2008-02-27 Thread Casey
to program anything we related if you can't format the output! Oddly, I learned JavaScript and PHP before truly learning XHTML. By the way, I really hate font tags, so learn XHTML! Also, if you're learning JavaScript, please learn W3C DOM, and not the document.write(Ugliness). :) -- -Casey

Re: [PHP] Cannot even come up with the beginning of a regex

2008-02-27 Thread Casey
it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? The a character (97) is different from the א character (1488). $a = html_entity_decode('#1488;'); $test=preg_replace('/\b([^\s]+)' . $a . '\b.*/U', '$1A', $test); Will this work? -- -Casey

Re: [PHP] output buffering in CLI script.

2008-02-28 Thread Casey
to stop the shebang line that *may* be present in the included script from being output to stdout. I use Windows, so I don't need the shebang line. But if I'm correct and the shebang line is: #!/usr/bin/php , shouldn't it be considered a comment, because of the #? -- -Casey -- PHP General

Re: [PHP] Making sure an include file works

2008-02-28 Thread Casey
. | `' http://us.php.net/manual/en/function.php-check-syntax.php -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] reverse string without strrev();

2008-02-28 Thread Casey
? Some multibyte character issue? -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] echo returnArray()['a']; // workaround

2008-02-28 Thread Casey
('a' = 'f', 'b' = 'g', 'c' = 'h', 'd' = 'i', 'e' = 'j'); } echo ${(${0}=ReturnArray())0}['a']; -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] echo returnArray()['a']; // workaround

2008-02-28 Thread Casey
On Thu, Feb 28, 2008 at 8:42 PM, Casey [EMAIL PROTECTED] wrote: On Thu, Feb 28, 2008 at 8:38 PM, Nathan Rixham [EMAIL PROTECTED] wrote: Robert Cummings wrote: On Thu, 2008-02-28 at 23:27 -0500, Robert Cummings wrote: On Fri, 2008-02-29 at 04:04 +, Nathan Rixham wrote

Re: [PHP] Making an interactive RGB color picker

2008-03-04 Thread Casey
); $coords = explode(',', $coords); // Easier way...? $im = imagecreatefrompng('colormap.png'); $color = imagepixelat($im, $coords[0], $coords[1]); I wouldn't do it like this, though. I'd use Javascript. -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Sessions - Ini settings and timeout

2007-10-17 Thread Casey
You could set $_SESSION['lasttime'] to time() and check it on every page. On Oct 17, 2007, at 3:58 AM, Holografix [EMAIL PROTECTED] wrote: I have some questions about sessions timeout and sessions ini settings. In php.ini I have session.gc_maxlifetime = 30 (for testing purpose only) ,

Re: [PHP] IF command

2007-10-18 Thread Casey
if (!in_array($component_reference, array(5,17))) // ... More compact. On Oct 18, 2007, at 5:49 PM, ron.php [EMAIL PROTECTED] wrote: When $component_reference is 5 or 19 I don't want the echo statement to output to the screen. What is the correct syntax? What I have below isn't

Re: [PHP] DOM - Question about \0

2008-03-16 Thread Casey
the entity #00; works? -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] __halt_compiler()

2008-03-16 Thread Casey
? -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Detecting \u0000 in a string...

2008-03-17 Thread Casey
= str_replace(\0, '', $str); -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ob_start: Capturing STDOUT and STDERR

2008-03-23 Thread Casey
of the script. Any pointers in the correct direction would be helpful! Thanks, Greg -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php You could use set_error_handler() and make your own function to echo out the error. -- -Casey -- PHP

Re: [PHP] Date math

2008-03-23 Thread Casey
); (December 18th 2007) echo $date1 = 1206072000 echo $date2 = 1197954000 Seems to be a time zone issue.1206057600 is the actual timestamp for March 21st, 2008 GMT. I don't know what time zone 1206072000 is is. -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] question about linux editor

2008-03-24 Thread Casey
need to connect to the server. please advice. thanks. Putty! -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] question about linux editor

2008-03-24 Thread Casey
On Mon, Mar 24, 2008 at 8:09 PM, Mark Weaver [EMAIL PROTECTED] wrote: Casey wrote: On Mon, Mar 24, 2008 at 7:28 PM, Sudhakar [EMAIL PROTECTED] wrote: i need to connect to the linux server using an editor. can anyone suggest which would be an ideal linux editor to connect to the server

Re: [PHP] Date math

2008-03-25 Thread Casey
) $date2 = strtotime($date2); (December 18th 2007) echo $date1 = 1206072000 echo $date2 = 1197954000 #86400 is 60 seconds x 60 minutes x 24 hours (in other words 1 days worth of seconds) $factor = 86400; $difference = (($date1 - $date2) / $factor); As Casey suggested, it is a timestamp issue

Re: [PHP] Cookie Trouble: getting the information back out...

2008-03-25 Thread Casey
On Mar 25, 2008, at 6:11 PM, Mark Weaver [EMAIL PROTECTED] wrote: Hi all, I suspect I already know part of the answer to this, but I'm not sure which way to go with it. I've got a project I'm working on and one of the things it's got to do is set cookies and then read them later. When

Re: [PHP] Cookie Trouble: getting the information back out...

2008-03-25 Thread Casey
On Mar 25, 2008, at 7:12 PM, Andrew Ballard [EMAIL PROTECTED] wrote: On Tue, Mar 25, 2008 at 9:59 PM, Mark Weaver [EMAIL PROTECTED] wrote: Thank you Andrew... Now it all makes perfect sense. Good grief! there's so much to learn. It seems that Java was easier. ;) That's not specific to

Re: [PHP] convert a string to integer

2008-03-28 Thread Casey
this issue ? thx -- Alain Windows XP SP2 PostgreSQL 8.2.4 / MS SQL server 2005 Apache 2.2.4 PHP 5.2.4 C# 2005-2008 is_numeric() -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] convert associative array to ordinary array

2008-03-28 Thread Casey
to call it by its position in the array $arr[3] Did you try? -- /Daniel P. Brown Forensic Services, Senior Unix Engineer 1+ (570-) 362-0283 $numbered_array = array_values($associative_array); -- -Casey -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] GD, changing an images pixel color, color matching, fuzzy picture

2008-03-28 Thread Casey
On Mar 28, 2008, at 4:27 PM, Lamonte [EMAIL PROTECTED] wrote: Okay I created a script that changes a basic smiley face into a red smiley face..but it doesn't replace all the yellow, it looks like a yellow shadow in the background: ?php $image = smiley.png; $data = getimagesize($image);

  1   2   3   >