Re: [PHP] yahoo webshosting

2006-03-16 Thread Anthony Ettinger
that. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] help with setting menu styles with PHP

2006-03-16 Thread Anthony Ettinger
--- > http://sperling.com > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php 5 installation problem

2006-03-16 Thread Anthony Ettinger
ot install a cpoy of apache/php5/mysql/etc > on your local PC and play with that? > > > > > Thanks. > > > > tedd > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php 5 installation problem

2006-03-16 Thread Anthony Ettinger
On 3/16/06, Miles Thompson <[EMAIL PROTECTED]> wrote: > At 05:40 PM 3/16/2006, Anthony Ettinger wrote: > > >dreamhost let's you choose php4 or 5, as I'm sure others do as well. > > > A little more on dreamhost. > PHP5 is installed as CGI, not Apache modul

Re: [PHP] using DOM functions with embedded html / encoding

2006-03-21 Thread Anthony Ettinger
thanks, > > jonathan > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] is there a guide for pda friendly web pages

2006-03-21 Thread Anthony Ettinger
ings/designmobile/ > http://www.opera.com/docs/specs/css/ > > HTH's > > tedd > -- > > http://sperling.com > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, v

Re: [PHP] using DOM functions with embedded html / encoding

2006-03-21 Thread Anthony Ettinger
...or you may have to decode the html entities first. On 3/21/06, Anthony Ettinger <[EMAIL PROTECTED]> wrote: > saveHTML();? > > instead of saveXML(); > > On 3/21/06, jonathan <[EMAIL PROTECTED]> wrote: > > I'm interested in creating an xml doc from my php5/

Re: [PHP] security risk by using remote files with include(); ?

2006-03-24 Thread Anthony Ettinger
which > > would be ececuted on my server. Is that right? And if yes, what > > can I do against it? > > Use readfile(), but remember that this allows him to inject anything he > likes into the content you send users, so your passing your risk onto > your users. > >

Re: [PHP] where php at?

2006-03-27 Thread Anthony Ettinger
#x27;t. > > > How would you like to come across? As an ungrateful SOB who can't take some > constructive critisism? You have some growing up to do before entering el > big bad world. Babies these days... > > I'll add more to this tomorrow morning when I'm sober. &g

Re: [PHP] where php at?

2006-03-27 Thread Anthony Ettinger
h $ ls /etc/php apache2-php4 apache2-php5 cli-php4 I don't think the binary php exists on my system. The only php* binary matches I have are: $ php php-config phpize I think cli-php4 is the command-line-interface php.ini file for php4, but the binary is no longer on my system. If anyone

Re: [PHP] where php at?

2006-03-27 Thread Anthony Ettinger
On 3/27/06, Anthony Ettinger <[EMAIL PROTECTED]> wrote: > On 3/27/06, Ryan A <[EMAIL PROTECTED]> wrote: > > Ooops, and lets not forget this one: > > > > curl http://www.yoursite.com/path/to/script/yourscript.php > > > > you can put that in your c

Re: [PHP] $i vs. $r

2006-03-27 Thread Anthony Ettinger
> > -- > Kevin Murphy > Webmaster - Information and Marketing Services > Western Nevada Community College > www.wncc.edu > (775) 445-3326 > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > Just a gue

[PHP] private $foo

2006-03-28 Thread Anthony Ettinger
I see this all over the place, but I don't think it stores the variable in = $foo: class Foo { private $foo; public function __setFoo($arg) { $this->foo = $arg; } -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.

Re: [PHP] private $foo

2006-03-28 Thread Anthony Ettinger
within the class. if you set private $foo = 'foo'; print $f->__getFoo(); $f->__setFoo('bar'); print $f->__getFoo(); Yields: foo bar -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] private $foo

2006-03-28 Thread Anthony Ettinger
On 3/28/06, Jochem Maas <[EMAIL PROTECTED]> wrote: > Anthony Ettinger wrote: > > On 3/28/06, Jay Blanchard <[EMAIL PROTECTED]> wrote: > > > >>[snip] > >>I see this all over the place, but I don't think it stores the variable > >>in = >

Re: [PHP] private $foo

2006-03-28 Thread Anthony Ettinger
f = new Foo; > > echo $f->foo,"\n"; > > $f->foo = "bar"; > > echo $f->foo,"\n"; > > Maybe I'm wrong, but I thought you couldn't use the "$f->foo" to access > private variables from outside a class? I think h

Re: [PHP] private $foo

2006-03-28 Thread Anthony Ettinger
On 3/28/06, M. Sokolewicz <[EMAIL PROTECTED]> wrote: > Anthony Ettinger wrote: > > On 3/28/06, Joe Henry <[EMAIL PROTECTED]> wrote: > > > >>On Tuesday 28 March 2006 1:12 pm, Jochem Maas wrote: > >> > >>> >>> > >>>class

Re: [PHP] About "wrapping" a forum into your own design.

2006-03-28 Thread Anthony Ettinger
the index.php of course loads into the div-tag with id=main. BUT > when I press a topic or something within this page (index.php), it opens up > in a new page. I know why, but I wonder if there is a way to get the rest of > the links in the forum to stay within my div-tag other than tracking down > all the variables and such in the forumscripts and alter them? (That's a > hell of alot java and php to work through) > > Any help is appreciated. > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] private $foo [HISTORY - TOTALLY THREAD JACKED]

2006-03-29 Thread Anthony Ettinger
de. I can't top that. lol! that must've been before the wheel. I remember when we got our first hard-drive in the lab...a 10Mb > dishwasher sized behemoth with its own AC unit > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html

Re: [PHP] Can't get XSLT on PHP

2006-03-29 Thread Anthony Ettinger
th-xslt-sablot > > I get no errors and PHP works fine, but i get no XSLT support (confirmed > via phpinfo()). > > Any ideas ? > > Any help would be apreciated. > > Warm Regards, > MA > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscr

Re: [PHP] HTTP status code

2006-03-30 Thread Anthony Ettinger
ent-Type: text/html > > 404 Not Found > -- > > can anyone tell me, why those two browsers are not affected? > > Brona > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anth

Re: [PHP] HTTP status code

2006-03-30 Thread Anthony Ettinger
Then it's workingFireFox, et. al. show you the server 404, IE on the otherhand has it's own 404 error page (for those newbies who don't know what a 404 is). You can disable it under IE options. On 3/30/06, Bronislav Klucka <[EMAIL PROTECTED]> wrote: > Yes, I do... &

Re: [PHP] HTTP status code

2006-03-30 Thread Anthony Ettinger
erver. Apache Server at foo.org Port 80 On 3/30/06, Jasper Bryant-Greene <[EMAIL PROTECTED]> wrote: > In other words, if you want Firefox/Opera/etc to display something, you > have to output something. Strange, that. :P > > Jasper > > Anthony Ettinger wrote: > > T

Re: [PHP] XML-RPC or SOAP

2006-03-30 Thread Anthony Ettinger
from here: > > > > http://www.schlossnagle.org/~george/php/WSDL_Gen.tgz > > > > We did it using PHP5's soap extension. > > > > good luck! > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, visit: http://www.php.net/unsub.php > > > > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html

Re: [PHP] Database connections

2006-03-30 Thread Anthony Ettinger
php5 still has the mysql_pconnect method for persistent database connections: http://us2.php.net/mysql_pconnect -- > Postgresql & php tutorials > http://www.designmagick.com/ > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html

Re: [PHP] Going loopy with arrays.....

2006-03-31 Thread Anthony Ettinger
t; And so on > > I am sure that it has something to do with my lack of sleep and the > looming of deadlines and this being something that I thought would be > trivial. Can someone drop-kick me in the right direction please? The sub > arrays need to be the points in each of the ar

Re: [PHP] Going loopy with arrays.....

2006-03-31 Thread Anthony Ettinger
> > didn't test it, but this should work. > [/snip] > > Didn't work, returns ArrayArray=ArrayArrayArray=ArrayArray=Array > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: setting the same value to multiple variables

2006-03-31 Thread Anthony Ettinger
tLabelClass && > > $readingGoalsInformationLabelClass && > > $readingGoalsAlphabeticLabelClass && > > $readingGoalsPrintLabelClass && > > $readingGoalsPhonologicalLabelClass && > > $readingGoalsPhoneticLabelClass && > > $readingGoal

Re: [PHP] Going loopy with arrays.....

2006-03-31 Thread Anthony Ettinger
> [lat] => 29.216 > ) > > [1] => Array > ( > [lon] => -99.0618 > [lat] => 29.179 > ) > } > } > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: setting the same value to multiple variables

2006-03-31 Thread Anthony Ettinger
nevermind, that doesn't work...after testing it :*( i've seen it in perlregex. On 3/31/06, Eduardo Raúl Galván Sánchez <[EMAIL PROTECTED]> wrote: > Anthony Ettinger wrote: > > ($a, $b) = $c; > ^^ I don't get the meaning of this... > > > > >

Re: [PHP] MySQL close connection, what's the purpose?

2006-03-31 Thread Anthony Ettinger
would keep the connection open until the script ends. by closing it earlier when you're done with the database for the "event", your script continues on, ie - parsing/displaying of db query results, template rendering, etc. yet the connection was closed earlier so other processes can use mysql (assuming your hitting your limit this way with too many simultaneous connections). -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] MySQL close connection, what's the purpose?

2006-03-31 Thread Anthony Ettinger
ly going to get you into > > trouble. > > So you close it after every query and then re-open it later for the > next query? I don't see that as a good idea. > No, you leave it open until you're done with the database. If you pee and poo in one sitting, you don

Re: [PHP] microsoft PHP ?

2006-04-01 Thread Anthony Ettinger
rld to get a web scripting language at a high > > >>> entreprise level is now bought by Micrsoft ? > > >> Where did you hear this? Have you considered the date? Have you > > >> considered how unlikely it is? Have you ever sought professional > help? > > >> > > >> -Stut > > > > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html

Re: [PHP] microsoft PHP ?

2006-04-01 Thread Anthony Ettinger
gt; I was affraid :o from the news > > > > > > Rule #1 on the Internet... Never trust any news without a link to an > > > official source > > > Rule #2 on the Internet... Never trust anything you read on April 1st > > > > > > -Stut > > &g

Re: [PHP] session_start

2006-04-06 Thread Anthony Ettinger
ail: [EMAIL PROTECTED] > Web : http://www.hotelkey.com > http://www.destinia.com > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.ht

Re: [PHP] xsl / xslt in php 4+

2006-04-07 Thread Anthony Ettinger
st (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html

Re: [PHP] Problem with require_once

2006-04-07 Thread Anthony Ettinger
c/controller/Controller.php on line 27 > > But, the file that I pass to require_once exist in the server... > If someone know the problem, please sende a answer... > > Thank you, > > Pablo > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html

Re: [PHP] Zend Certification

2006-04-07 Thread Anthony Ettinger
Systems Administrator > > > American Student Loan Services > > > www.americanstudentloan.com > > > 1.800.575.1099 > > > > > > > -- > > 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 > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html

Re: [PHP] php varible in Javascript alert()

2006-04-11 Thread Anthony Ettinger
ed to screen > echo"alert('$errorMessage');"; > } > > I am capturing all the errors from a form and then output them all at once > > Thanks for any help > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net

Re: [PHP] php varible in Javascript alert()

2006-04-11 Thread Anthony Ettinger
actually... alert(''); On 4/11/06, Anthony Ettinger <[EMAIL PROTECTED]> wrote: > alert('echo $errorMessage'); > > On 4/11/06, Mace Eliason <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I am not sure why this won't work I am pretty

Re: [PHP] php varible in Javascript alert()

2006-04-11 Thread Anthony Ettinger
s message was checked by NOD32 antivirus system. > http://www.eset.com > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php varible in Javascript alert()

2006-04-11 Thread Anthony Ettinger
; Dan > > --- > http://chrome.me.uk > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anthony > Ettinger > Sent: 12 April 2006 00:58 > To: Chrome > Cc: Mace Eliason; php-general@lists.php.net > Subj

Re: [PHP] Instalation Nightmares For Word Press Please Help

2006-04-13 Thread Anthony Ettinger
really. > > oh and please don't post your questions directly at me unless: > > a, I ask you to. > or b, I can bill you. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html

Re: [PHP] SQL result

2006-04-13 Thread Anthony Ettinger
t; -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] interview

2006-04-13 Thread Anthony Ettinger
t (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Need help with an if statement

2006-04-23 Thread Anthony Ettinger
ed) > > This is what I have now, but I don't know what to call my {if ?} > > {if ?} src="{$ImagesDir}/arrow.gif" width="9" height="7" border="0" > align="abstop">{$menu_content} > {else} > {$menu_content} > {/

[PHP] converting nested hash to xml

2006-04-28 Thread Anthony Ettinger
), bar2 => array (...), barN => array(...), ); would want the output to be something like: Some Title Some Text Some Title2 Some Text2 ... -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/)

[PHP] converting REST result to SOAP object

2006-04-29 Thread Anthony Ettinger
isn't really what I want. -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] simplexml and serialize error

2006-04-29 Thread Anthony Ettinger
alize() to do a dump, I get this error. -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] secure upload file

2006-05-03 Thread Anthony Ettinger
ve no sympathy for you when, when, not if, when your server is trashed. Sorry. -- Like Music? http://l-i-e.com/artists.htm -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.h

Re: [PHP] mod_rewrite help

2006-05-03 Thread Anthony Ettinger
rt now [/aha moment] http://www.organicseo.org/URL_Rewriting.html -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Quotation marks considered harmful

2006-05-05 Thread Anthony Ettinger
ot to mention that all the "good" matching possible delimiters are already taken for Arrays, code blocks, tag start/end, and order of operations. -- Like Music? http://l-i-e.com/artists.htm -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.ph

Re: [PHP] Wikimedia - cookies

2006-05-19 Thread Anthony Ettinger
ll LiveHTTPHeaders in Firefox and see what Cookies you get. Configure your browser to prompt you for all Cookies and see what Cookies you get. HTH mediawiki.org #mediawiki on irc.freenode.net -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] file permission error

2006-05-22 Thread Anthony Ettinger
ger Download now -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can a script run twice?

2006-05-23 Thread Anthony Ettinger
of web-based application development > - GETs get, POSTs do. Add Ticket Just change enqno= for a different queue. Found the simple answer - Double click - two records ! Like the previous poster says, GET requests should not "put, they should only "get". Use POST to writ

Re: [PHP] php sessions and Google

2006-06-07 Thread Anthony Ettinger
On 6/7/06, tedd <[EMAIL PROTECTED]> wrote: Can someone shed some light on this for me? How can one do sessions and make Google bots happy? I think what they're getting at is don't use session id's unless they're logged in. -- Anthony Ettinger Signature: http://c

Re: [PHP] Tables vs. databases

2006-06-10 Thread Anthony Ettinger
tables? Kindly suggest with pros and cons of each. you might want to consider storing the files outside of the database as well, and just a pointer to it's path in the table. with respect to table vs. databases per user, neither. -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.

Re: [PHP] transform RDF to HTML via XSL and PHP

2006-06-11 Thread Anthony Ettinger
I'ts been awhile, but try the above. -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Simple blog software... Simple but clean code... suggestions?

2006-06-15 Thread Anthony Ettinger
k/dg/insp> Cool sites btw! Good work. :) Cheers, M -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Anthony Ettinger Signature: http://chovy.dyndns.org/hcard.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] GET, POST, REQUEST

2006-06-17 Thread Anthony Ettinger
intend. So, there are two things you must do here: 1) always check the origin of your data (don't use $_REQUEST, even if it seems convenient), and 2) always check that the input received is input expected (filter the input). -- Ben Ramsey http://benramsey.com/ -- PHP General Mailing Li

Re: [PHP] GET, POST, REQUEST

2006-06-17 Thread Anthony Ettinger
me if I am wrong, I am by no means a security or PHP expert, though working towards both :D) On Saturday 17 June 2006 14:51, Anthony Ettinger wrote: > simply using $_POST is by no means more secure than $_REQUEST. > > On 6/17/06, Ben Ramsey <[EMAIL PROTECTED]> wrote: > > On 6/

[PHP] isset() question

2004-02-15 Thread Anthony Ritter
The following script is from Kevin Yank's book (Sitepoint). When I test it _without_ entering a name in the text box and hit submit, the _next_ page loads - however the same page should load beacuse of the conditional if (!isset($name) ): . If I replace !isset() with empty() li

Re: [PHP] isset() question

2004-02-15 Thread Anthony Ritter
- Original Message - From: "Richard Davey" <[EMAIL PROTECTED]> > Hello Anthony, > I feel the book you're learning from might not be the best out there! > Especially as it uses the horrible if : else : endif notation, > includes code on the same line

[PHP] htmlspecialchars()

2004-03-25 Thread Anthony Ritter
php / mysql/ apache I tried the following using the call to htmlspecialchars() not sure why it is insn't working. I get the output: Test Thank you. TR .. //script Test", ENT_QUOTES); echo $new; ?> // this is what is output:Test // instead of this... // Test

[PHP] .doc file

2004-03-30 Thread Anthony Ritter
Greets, I've been able to open a remote URL, read it and then lop off everything except the last line and break it into an array with its' tabs - /t . The data will then be inserted into a table. However, the following URL shows reservoir storage and is a .doc file. I am unable to run the same s

[PHP] Re: .doc file

2004-03-30 Thread Anthony Ritter
Jason Barnett" <[EMAIL PROTECTED]> wrote in message: > Actually, why don't you just use plain text like this. Sheesh, > sometimes I forget the easy answer :) .. Jason, Thanks for the reply. Since those figures change _daily_ on their site, I was hoping for a way to open the file, re

[PHP] Specifying Variable Document Path in PHP

2004-10-25 Thread Anthony Baker
paths across the site (as I'm doing now). Is there any easy way to accomplish this? Thanks in advance, Anthony -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] apache2 & php stability

2004-11-29 Thread Anthony Gauda
I have read at various places on the web that Apache 2 and PHP running as a module isn't recommended for production sites. Does anyone here run PHP 4/5 and Apache2 in a high load production environment with success? If so, whats your configuration? Thanks! -- PHP General Mailing List (http://ww

Re: [PHP] apache2 & php stability

2004-11-29 Thread Anthony Gauda
very inexpensive to start. Under a high load spike Apache 2 would, in theory, respond better. Greg Donald wrote: On Mon, 29 Nov 2004 15:55:31 -0600, Anthony Gauda <[EMAIL PROTECTED]> wrote: I have read at various places on the web that Apache 2 and PHP running as a module isn't reco

Re: [PHP] apache2 & php stability

2004-11-29 Thread Anthony Gauda
actually any distro with a 2.6 kernel should already have it. You can check by doing a getconf GNU_LIBPTHREAD_VERSION if it says NPTL .xx you have it... Greg Donald wrote: On Mon, 29 Nov 2004 16:21:22 -0600, Anthony Gauda <[EMAIL PROTECTED]> wrote: The same load under apache 2 runs und

[PHP] Setting or Getting Relative Path for PHP Includes

2004-12-20 Thread Anthony Baker
is there a way to call this variable from the server itself so that it's automatically -- and correctly -- set? Thanks, Anthony -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] preg_replace - I don't have a clue

2006-01-13 Thread Anthony Best
On 1/12/06, Frank Bax <[EMAIL PROTECTED]> wrote: > > reg_replace( ' (\d+\$)', '+$0', $prop ); /* results in > dollar-alpha-space-space-plus-digits-dollar */ > $Fencing +11$Lumber +17$Weight: 317 Stones$Energy Resist 2%$ Try: preg_replace( '

[PHP] cannot find mysql_connect; _pconnect

2002-06-18 Thread Anthony 'Crash' Ciarochi
I am having trouble connecting to my MySQL database: The error message I receive in my browser is: Fatal error: Call to undefined function: mysql_connect() in ../results.php on line 21 The line in question is a simple db connection: $db = mysql_connect("localhost", "test", "test123"); Simila

Re: [PHP] cannot find mysql_connect; _pconnect

2002-06-18 Thread Anthony 'Crash' Ciarochi
Nope, that's not it. 'extension=mysql.so' was already uncommented in /etc/php.ini Where is this library supposed to live? I only see the client libraries in /usr/lib/mysql/ (mysqlclient.so, etc.). - AFC - Original Message - From: "Rasmus Lerdorf" <[EM

[PHP] variables not being passed from form ??

2002-06-18 Thread Anthony 'Crash' Ciarochi
I have a web page which contains a form whose action is a php script. Unfortunately, NONE of the form's variables are being passed when the form is submitted. For example: the submit button's name is 'submit', and the value is 'Add', but in the receiving php script, $submit is empty, and so is $

[PHP] Re: variables not being passed from form ??

2002-06-18 Thread Anthony 'Crash' Ciarochi
Got it! 'file_uploads' was Off in /etc/php.ini. That was stopping all form variables from being passed from the file upload form Thanks all! AFC "Anthony 'Crash' Ciarochi" <[EMAIL PROTECTED]> wrote in message 024e01c21711$111d2200$[EMAIL PROTECTED

[PHP] Re: Variable Problems with 'multipart/form-data'

2002-06-18 Thread Anthony 'Crash' Ciarochi
I think I just solved this for myself! Look in your /etc/php.ini for: file_uploads = Off ...change it to file_uploads = On - AFC "Seoz" <[EMAIL PROTECTED]> wrote in message 005601c2173a$1a25ebb0$764efea9@dreamfactory">news:005601c2173a$1a25ebb0$764efea9@dreamfactory... Hello I'm Korean PHPe

[PHP] Premature EOS Header

2001-12-22 Thread Anthony F. Rodriguez
When I call the following script, I get "Premature End of Script Header". Why? TEST "; }; @mysql_free_result($result_1); @mysql_close($connection); exit; ?> Thanks! Anthony F. Rodriguez ([EMAIL PROTECTED])

[PHP] Retrieving parameters passed from .html...?

2007-04-10 Thread Anthony J. Maske
t the value showtopic and the value of 9? I know this is simple but I'm pulling my hair out here... Thanks! Anthony -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Retrieving parameters passed from .html...?

2007-04-10 Thread Anthony J. Maske
See... the second I sent this I took a sip of red-bull and my brain cleared up... $topicID = $_GET['showtopic']; Right? Anthony J. Maske [EMAIL PROTECTED] http://home.comcast.net/~ajmaske -Original Message----- From: Anthony J. Maske [mailto:[EMAIL PROTECTED] Sent: Tues

[PHP] Evaluating strings...

2007-04-10 Thread Anthony J. Maske
'') { $InBody = true; } elseif ($Tag = '') { $InBody = false; } Why won't the later work? What am I missing in the first snip... Thanks again...! Anthony -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Evaluating strings...

2007-04-10 Thread Anthony J. Maske
Got it... Thanks mucho! Anthony J. Maske [EMAIL PROTECTED] http://home.comcast.net/~ajmaske -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 10, 2007 9:03 PM To: Anthony J. Maske Cc: PHP General Subject: Re: [PHP] Evaluating strings... Anthony J

[PHP] Reading & Writing XML Documents...

2007-05-14 Thread Anthony J. Maske
Can anyone point me to some good online reference/examples of reading/writing XML documents? Thanks, Anthony

<    1   2   3   4