Re: [PHP] "DF" output

2001-03-27 Thread Joe Brown
works actually..but i dont want 'ps', I > want 'top'). Ran top using su to the user 'www' from the command line and > was able to run it fine. > > On Tue, 27 Mar 2001, Joe Brown wrote: > > > Date: Tue, 27 Mar 2001 12:35:08 -0500 > > From: J

[PHP] New PHP-GTK Site

2001-03-27 Thread Joe Stump
ocation. Finally, if anyone wants to help out (admin, howtos, etc.) please feel free to contact me. As for me, I'm tired and plan on working on it more tomarrow :o) --Joe /*****\ *Joe Stump * *www.Care2.com * *Office: 650.328.0198

[PHP] Re: [PHP-GTK] New PHP-GTK Site

2001-03-27 Thread Joe Stump
So tired I forgot to put in the URL: http://gtk.php-coder.net --Joe On Tue, Mar 27, 2001 at 10:32:26PM -0500, Joe Stump wrote: > I've noticed there isn't really a jumping off point for the PHP-GTK beginners > and users. I spent the last few hours throwing a site together that

Re: [PHP] "DF" output

2001-03-27 Thread Joe Brown
> In my experience, you can't use | in exec calls, you have to use the back tick > > method. > > > > > > Steven Shepherd <[EMAIL PROTECTED]> wrote: > > Bad example (changed to ps and it works actually..but i dont want 'ps', I > > want 'top'). Ra

[PHP] Q: php.ini

2001-03-28 Thread Joe Rice
Hi, I made a change to my php.ini and phpinfo() doesn't reflect the change? i set sendmail_path = "/usr/lib/sendmail -OIgnoreDots -t" and phpinfo() still shows the default sendmail_path = "/usr/lib/sendmail -t -i" how can i get this to work cor

Re: [PHP] Q: php.ini

2001-03-28 Thread Joe Rice
sorry for the lame question, that was what i needed to do. Thanks, joe Jon Rosenberg([EMAIL PROTECTED])@Wed, Mar 28, 2001 at 11:38:19AM -0500: > You need to restart your web server (apache, most likely). > > Jon > > > - Original Message - > From: "Joe Rice

Re: [PHP] file deletions ....

2001-03-28 Thread Joe Stump
Make sure that the PHP user (usually nobody) has the access to delete those files - I usually just do `rm -fr /path/to/file.foo`; and it works fine. --Joe On Wed, Mar 28, 2001 at 09:42:36AM +0100, Steve Brett wrote: > hi, > > i need to delete files in my web folder so i can 'ti

Re: [PHP] New PHP-GTK Site

2001-03-28 Thread Joe Stump
http://gtk.php.net http://gtk.php-coder.net --Joe On Wed, Mar 28, 2001 at 11:19:24AM -0800, elias wrote: > What is PHP-GTK? > Can you just write me a short list of what it can do? > > "Joe Stump" <[EMAIL PROTECTED]> wrote in message > [EMAIL PROTECTED]">news

Re: [PHP] Cookie not getting set in IE 5 but no problem in Netscape

2001-03-28 Thread Joe Stump
Ah yes, the infamous IE cookie problem - look at the expire time - I be it destroys the cookie as soon as it gets it because the expire time is either on or before the time the cookie was sent. --Joe On Wed, Mar 28, 2001 at 07:16:52PM +0800, Floyd Piedad wrote: > My program works really w

Re: [PHP] Curious

2001-03-28 Thread Joe Stump
e.''."\n"; or echo "This is Mike's Homepage"; --Joe On Wed, Mar 28, 2001 at 12:10:02PM +0200, Christian Reiniger wrote: > On Wednesday 28 March 2001 08:18, you wrote: > > > in general, I avoid using quotes where possible (such as in the > > follo

Re: [PHP] Passing Special Characters in Query String

2001-03-28 Thread Joe Stump
> try rawurlencode() Or just plain urlencode() - remember to use urldecode() on the other side if you plan on putting it in the DB. --Joe > > -- > Christian Reiniger > LGDC Webmaster (http://sunsite.dk/lgdc/) > > /* you are not expected to understand this */ > >

Re: [PHP] MySQL Schema

2001-03-28 Thread Joe Stump
p'; $dump = `$mysqldump -u $user -p $password -d $table`; highlight_string($dump) --Joe On Wed, Mar 28, 2001 at 06:21:29AM -0500, [EMAIL PROTECTED] wrote: > Hi, > > Is there any way in PHP to print out the schema of my database tables? > > Cheers > Ade > > -- &

[PHP] Variable scope problem

2001-03-28 Thread Joe Nelson
I have two functions like the ones below. If the first one creates a variable as global, shouldn't it be accesible to the second function? function setGlobal() { global $test; $test = "123"; } function getGlobal() { global $test; echo $test; } -- PHP General

Re: [PHP] Catagory list

2001-03-31 Thread Joe Stump
$x = mysql_query($sql); while($row = mysql_fetch_array($x)) { // echo articles here } } The permanent solution is to make a separate table called "categories" and then do a join on the categoryID from the two tables. --Joe On Fri, Mar 30, 2001 at 10:33:1

[PHP] something of interest on the GTK front

2001-03-31 Thread Joe Stump
has a pretty comprehensive example of GtkText(), which seemed to be lacking. --Joe /**\ * Joe Stump - PHP/SQL/HTML Developer * * http://www.care2.com - http://www.miester.org -

Re: [PHP] PHP SITE SUGGESTION

2001-04-01 Thread Joe Stump
wget works fine with redirects, etc. I've never had any problems downloading php with wget (even on the new site). --Joe On Fri, Mar 30, 2001 at 10:40:50AM -0500, Michael Kimsal wrote: > With the hope that someone at php.net is listening... > > I understand you want to track how

Re: [PHP] C and PHP

2001-04-01 Thread Joe Stump
You might want to look in the PHP source code at the README.EXT_SKEL file for info on how to incorporate that stuff. --Joe On Sat, Mar 31, 2001 at 08:49:30PM +0200, Ft Karras wrote: > Somebody knows if it is possible to link C and PHP? > > I have a C library and need to 'include&

[PHP] Search Engines

2001-04-01 Thread Joe Montiel
Hello, I am new to the list and to php...I would like to know how php does with the major search engines. Do I need to do something extra to make it work? Will it index if I am pulling my content from text files? (If this is in an archive somewhere, point me to it). Thank you! Joe -- PHP

Re: [PHP] Building an array from a URL

2001-04-04 Thread Joe Stump
FYI you can send data like this on the url: http://www.foo.com/script.php?test[joe]=stump&test[harry]=bar&test[jane]=scott Then $test will be an array that translates to this in PHP: 'stump', harry => 'bar', jane

Re: [PHP] Monthly Drawing Winner!

2001-04-04 Thread Joe Stump
what about lists? --Joe On Wed, Apr 04, 2001 at 10:04:53AM -0700, Rasmus Lerdorf wrote: > Done. Anything from mail.thecasino.com and thecasino.com is now blocked. > > -Rasmus > > On Wed, 4 Apr 2001, TV Karthick Kumar wrote: > > > Can't we just get rid of this spam:

[PHP] file upload question

2001-04-04 Thread Joe Stump
I'm in the habit of putting all my form variables into an array (ie: ) so that I have a nice little package to pass to functions. My question is can you put files into those as well? If so how does it handle the $file_name and $file_size variables PHP creates?

Re: [PHP] Monthly Drawing Winner!

2001-04-04 Thread Joe Stump
an add a blacklist to prevent these > spammers from coming back.. True, ezmlm (wich kicks ass), allows all of these. I suggest anyone who hasn't checked out qmail on the list to check it out. It works great with PHP and I've even made my own mailing list using qmail wi

Re: [PHP] filename into variable.

2001-04-04 Thread Joe Stump
l: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] /******\ *Joe Stump - PHP/SQL/HTML Developer * * http://www.care2.com - http://www.miester.o

Re: [PHP] Building an array from a URL

2001-04-04 Thread Joe Stump
It works for me in production. On Wed, Apr 04, 2001 at 08:56:53PM -0400, Mike Gifford wrote: > I tried this, but it converted [ and ] to url friendly codes. Does this still > work? > > Mike > > Joe Stump wrote: > > FYI you can send data like this on the url: >

Re: [PHP] Building an array from a URL

2001-04-04 Thread Joe Stump
Ok - say you have this: $foo = array( 0 => 'joe', 1 => 'stump', 2 => 'there'); while(list($key,$val) = each($foo)) $args[] = 'array['.$key.']='.$val; $url

Re: [PHP] current location

2001-04-05 Thread Joe Stump
on a unix system type: $path = `pwd`; --Joe On Thu, Apr 05, 2001 at 04:28:50PM +0800, Paul Juliano wrote: > Hi, > > What's the php function to find out what server a php page is located? > For example, the php page is at www.myserver.com. The php page should be able > to

Re: [PHP] Apache user

2001-04-05 Thread Joe Conway
> Can anyone tell me how to get the user apache is running as from php? > If you're on Linux/Unix, try: echo `whoami`; Hope this helps, Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

Re: [PHP] array speed

2001-04-05 Thread Joe Stump
through it. --Joe On Thu, Apr 05, 2001 at 10:41:10PM +0300, Rouvas Stathis wrote: > I wouldn't worry about that. Although it all depends by what do you mean > by "speed":-) > Anyway, you can always test your page with "ab" (part of the Apache > installation,

Re: [PHP] array speed

2001-04-05 Thread Joe Stump
let me be more clear about the microtime() - do something like: --Joe On Thu, Apr 05, 2001 at 02:43:40PM -0500, Joe Stump wrote: > You can do some test with microtime() and see how long it takes. 350 elements > isn't really a large array. I've seen PHP chew through arrays

Re: [PHP] Apache user

2001-04-05 Thread Joe Conway
Actually no need for that if you use backticks. See http://www.php.net/manual/en/html/language.operators.execution.html#language .operators.execution Joe - Original Message - From: "Johnson, Kirk" <[EMAIL PROTECTED]> To: "PHP User Group" <[EMAIL PROTECT

Re: [PHP] PHP and CVS

2001-04-05 Thread Joe Stump
other applications) http://sourceforge.net/projects/publishtron We just released it open source ... it's hackers only right now, but someone is working on making it all pretty and easy to install. --Joe On Thu, Apr 05, 2001 at 05:17:51PM -0400, ..s.c.o.t.t.. [gts] wrote: > do any of yo

Re: [PHP] Directory(parent) Structure

2001-04-05 Thread Joe Stump
../../../../../../../ -> ../n or chdir(); --Joe On Mon, Apr 02, 2001 at 06:44:30PM -0400, Chris Anderson wrote: > I know using ../ in a path moves to the parent directory. But is there a way to move >back farther

Re: [PHP] MySql & PHP - Looking for the right command

2001-04-05 Thread Joe Stump
This is how you can do it (just tried it on my news with my news categoryID's) i'll modify slightly for your purpose with psuedo code ... SELECT carType,count(carType) FROM cars GROUP BY carType; --Joe On Fri, Apr 06, 2001 at 11:28:00AM +1200, YoBro wrote: > Hello, > >

Re: [PHP] Read one word in file

2001-04-05 Thread Joe Stump
This is how I would do it ... --Joe On Thu, Apr 05, 2001 at 04:50:37PM -0700, Andrew V. Romero wrote: > I have a php script that reads a file that looks something like this: > > 1. Question One goes here: > 2. Question two goes here: > > I need someway to have the scrip

Re: [PHP] better functionality in query ?

2001-04-05 Thread Joe Stump
e in your instance - just have people type in the first 4 letters of the persons name. --Joe On Thu, Apr 05, 2001 at 04:51:47PM -0700, Jerry Lake wrote: > Damn, if I'd a known it was that easy ;) > Thanks for the help, works great now. > > Jerry Lake- [EMAIL PROTECTED

Re: [PHP] drop-down menu variables

2001-04-05 Thread Joe Stump
You should all check out libHTMLForm at http://www.nirvani.net/software - it has all sorts of functions for writing HTML forms easily and painlessly. I use it all the time now (shameless plug - my roommate wrote it a while back). --Joe On Fri, Apr 06, 2001 at 02:35:11AM +0200, Richard wrote

Re: [PHP] Array problem

2001-04-06 Thread Joe Stump
This would work ... --Joe On Fri, Apr 06, 2001 at 09:19:52AM +0100, Alexis Antonakis wrote: > Hi, > > I am having big problems with merging two arrays. I just can't seem to get > my head around it. > > I have two arrays which I wish to merge, but I want to EXC

Re: [PHP] Variables

2001-04-06 Thread Joe Stump
I'm not sure about Freeserve, but I don't think that Geocities supports PHP on their webpages (at least not for users ...). --Joe On Fri, Apr 06, 2001 at 10:05:14AM +0100, Cheng, Kynan (London) wrote: > Hello, > > Can anyone help me to achieve this using PHP: > &g

Re: [PHP] Date formatting

2001-04-06 Thread Joe Stump
You need a UNIX timestamp for the second argument in date() - thus you need to first convert your $even into a timestamp (number of seconds past 1970). That would work ... --Joe On Fri, Apr 06, 2001 at 01:13:59PM +0100, Matt Davis wrote: > Hi I am trying to format a date extracted from my

Re: [PHP] Nested for() loops?

2001-04-06 Thread Joe Stump
A copy and paste into foo.php and then a php -q foo.php yielded results for me. --Joe On Fri, Apr 06, 2001 at 10:44:59AM -0600, [EMAIL PROTECTED] wrote: > Howdy Y'all! > > I'm trying to figure out why I'm having so much difficulty with > nested for loops. >

Re: [PHP] Nested for() loops? -> Now Multi Dimension Arrays

2001-04-06 Thread Joe Stump
You just do something like this: '.$val."\n"; ?> Just throw arrays into arrays :O) --Joe On Fri, Apr 06, 2001 at 11:18:19AM -0600, [EMAIL PROTECTED] wrote: > > > Joe Stump wrote: > > > > A copy and paste into foo.php and then a php -q foo.php yiel

Re: [PHP] Print or Echo.

2001-04-06 Thread Joe Stump
> Than why the two different commands? Simple - some people come from C which uses print ... others come from languages that use echo. It fosters adaptation by other programmers. --Joe > > Thanks. > -Sterling > > -- > PHP General Mailing List (http://www.php.net/

Re: [PHP] lowest number in field

2001-04-07 Thread Joe Stump
SELECT * FROM table ORDER BY number LIMIT 1 --Joe On Sat, Apr 07, 2001 at 05:36:04PM +0100, george wrote: > > Is it possible to be able to query the DB find the lowest numebr in the > table and then display it on the page. > > > TIA > George > > > &g

Re: [PHP] getting commandline ?

2001-04-08 Thread Joe Stump
; > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] /

Re: [PHP] anything wrong with php.net?

2001-04-08 Thread Joe Stump
I'm on it right now. --Joe On Sun, Apr 08, 2001 at 09:02:54PM -0300, Christian Dechery wrote: > Is there anything wrong with www.php.net? > > I can't access it for two days now... > > . Christian Dechery (lemming) > . http://www.tanam

Re: [PHP] Row colors

2001-04-08 Thread Joe Stump
--Joe On Mon, Apr 09, 2001 at 12:08:10AM +, Mike P wrote: > I can change the column sof a table with the following code but how do I > change the row colors instead.With the columns I have "i" to manipulate but > not with rows. > > while ($row

Re: [PHP] Inputing data to a relational database

2001-04-08 Thread Joe Stump
www.mysql.com -> Documentation - is you know how to insert data using SQL already then just make the PHP script. --Joe On Mon, Apr 09, 2001 at 01:11:57AM +0100, Nathan Roberts wrote: > I am a nebie to Mysql/php and am currently working on an urgent project, a > on-line catalogue. I

Re: [PHP] parse error

2001-04-08 Thread Joe Stump
Worked for me, but I had to make sure that $messagearray was in fact an array. So wrap that block of code in this: if(is_array($messagearray) && sizeof($messagearray)) { } --Joe On Mon, Apr 09, 2001 at 01:13:00AM +0100, kenny.hibs wrote: > I am getting a parse error in th

Re: [PHP] uninstalling PHP4

2001-04-08 Thread Joe Stump
I think the more important question is: Why would you want to uninstall it? ;o) --Joe On Sun, Apr 08, 2001 at 08:40:57PM -0400, David Loszewski wrote: > how do I tell? > > -Original Message- > From: Rasmus Lerdorf [mailto:[EMAIL PROTECTED]] > Sent: Sunday, April 08, 20

Re: [PHP] Row colors

2001-04-08 Thread Joe Stump
Oh well ... '."\n"; // 's echo ''; } ?> On Sun, Apr 08, 2001 at 08:37:26PM -0400, Mike P wrote: > That does not change every other row. > > -Original Message- > From: Joe Stump [mailto:[EMAIL PROTECTED]] > Sent: Sunday,

Re: [PHP] uninstalling PHP4

2001-04-08 Thread Joe Stump
No. PHP is totally independent of all DB's... --Joe On Sun, Apr 08, 2001 at 08:50:34PM -0400, David Loszewski wrote: > because I uninstalled MySQL, don't you need MySQL to run PHP? > > -Original Message- > From: Joe Stump [mailto:[EMAIL PROTECTED]] > Sent: Su

Re: [PHP] Threading code

2001-04-09 Thread Joe Stump
You should check into forums ... --Joe On Mon, Apr 09, 2001 at 11:57:45AM -0600, Ashley M. Kirchner wrote: > > Does anyone have 'plug-in' message threading code? I see several > PHP sites with some sort of message threading going on, and I'd hate to > reinvent t

Re: [PHP] Threading code

2001-04-09 Thread Joe Stump
'%foo%' last time I checked) was the reason I didn't go with it. --Joe > > > >>>>>>>>>>>>>>>>>> Original Message <<<<<<<<<<<<<<<<<< > > On 4/9/01, 11:12:

Re: [PHP] Commercial sites that use PHP

2001-04-10 Thread Joe Stump
We use it at www.care2.com - serves up over a million hits a day without any problems. We've even hit the media metrix top 500 a few times. worldcom.com also uses PHP (notice the .phtml extension). --Joe On Tue, Apr 10, 2001 at 01:21:16PM -0700, Ralph Guzman wrote: > here are

[PHP] foreach vs. while(list() = each())

2001-04-11 Thread Joe Stump
What are the differences in these? I know with while() you have to reset() the array afterwards, but foreach() you don't. Also foreach() appears to be quite a bit faster. My main question is there ANY difference in how these two loop through the array.

[PHP] help: ldap ext not working.

2001-04-11 Thread Joe Rice
what this means. line 23 of /usr/local/apache/conf/httpd.conf is; LoadModule php4_modulelibexec/libphp4.so any help or direction would be appreciated. Thanks, joe rice web admin www.bigidea.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROT

[PHP] loading extension fails

2001-06-23 Thread Joe Stump
, etc). Then I head off to restart apache so I can start using my shiny new extension. To my surprise I get the following error: PHP Warning: Invalid library (maybe not a PHP library) 'pgsql.so' in Unknown on line 0 Am I missing something? --Joe Joe Stump &l

Re: [PHP] session handler class

2001-07-02 Thread Joe Rice
i would love to see this too, i think it was stripped. thanks, joe www.bigidea.com scott [gts]([EMAIL PROTECTED])@Mon, Jul 02, 2001 at 04:54:26PM -0400: > it's attached to the email. > > did you get the attachment, or was it stripped off somewhere? > > i can upload the f

[PHP] Real Estate Catalog

2001-07-06 Thread Joe Smith
I am working on my first MySQL/PHP app. It is a real estate catalog. To build it, I am modifying the shopping cart found in Welling & Thomson's "PHP & MySQL Development". I think I am getting the gist of the process, but could use a little help from more experienced folks out there. When the ap

[PHP] Journal.php

2001-07-11 Thread Joe Ace
gured that would be pretty much the same thing. I get no errors, however no file is made. What am I doing wrong? -- -Joe Ace http://www.dbzlegends.net";>Webmaster of Otaku Empire and http://rpg.dbzlegends.net";>Dragonball Z Legends RPG -- PHP General Mailing List (http://www.php

Re: [PHP] PHP based statistics/Graphs

2001-07-21 Thread Joe Conway
anyone is working on a PHP extension for R? -- Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

[PHP] Q: array intersection problem

2001-08-14 Thread Joe Rice
8","9"); and i would like the result to be an new array that looks like this: $new_questions = array("1", "2", "3", "4","5","6","7","8",

Re: [PHP] Use PHP to connect to Oracle 8i database

2001-08-27 Thread Joe Conway
ct with sqlplus, you should be able to connect from PHP. > 2) do you have to use the OCI libraries? > Yes, you do need the oracle client. See http://www.php.net/manual/en/ref.oci8.php for more info. Particularly see the note on pthread. HTH, -- Joe -- PHP General Mailing List (ht

RE: [PHP] PHP 4.0.6 on NT (IIS 4.0) Can't replace uploaded file

2001-10-01 Thread Joe Kaiping
/uploadtemp\php4F6.tmp' to > 'D:/public/HJ/www.h-jenterprises.com/test/pics/catalog/104_2.gif' in > D:\public\HJ\www.h-jenterprises.com\test\admin\item_functions.php on > line 41 > > Is there anything I should have their IT guy check as to why > this script > c

RE: [PHP] PHP 4.0.6 on NT (IIS 4.0) Can't replace uploaded file

2001-10-01 Thread Joe Kaiping
Hi Joe, I'm not familiar with PHP on Windows myself, but I just checked out the manual pages to see if it said anything and it sounds like chmod() doesn't work on windows: http://www.php.net/manual/en/function.chmod.php "Note: This function does not work on Windows systems&qu

RE: [PHP] How to do a dynamic UPDATE SET

2001-10-01 Thread Joe Kaiping
Something like this might work for you. (Just typed in the code and didn't test it, so take with a grain of salt. It doesn't really take into account all types of data, but maybe it will help with an idea.) Have groups of the following in your form: column_name1 column_name2

RE: [PHP] UPLOAD_TMP_DIR

2001-10-02 Thread Joe Kaiping
et, though. There are other upload classes available there as well. Maybe you could try a couple and write back to this mailing list the ones you liked best? -Joe --- Name: Upload Author: chris <[EMAIL PROTECTED]> Description: The Upload class is a wrapper for uploading files using html

[PHP] set multiple variables

2004-10-01 Thread Joe Szilagyi
Hi, I have this working: if ($REMOTE_ADDR == "212.3.54.65") { header("Location: http://www.google.com/search?&q=huzzah";); Redirect browser exit; } But I want to specify multiple IPs. What's the best recommended way for doing that? thanks

[PHP] Newsgroups Space

2004-10-06 Thread Joe Crawford
i know this isn't completely related to php but i am creating a web based news reader in php, how much disk space do you think i need to run my own local news server? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] XML RSS installation

2008-12-01 Thread Joe Schoemann
for 3 days now and need some help, what must I do now to get the RSS working. Yours truly, Joe

[PHP] Error in Building an XML File

2009-03-09 Thread Joe Harman
t;); header("Content-Disposition:attachment;filename=google_feed.xml"); Thanks Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Error in Building an XML File

2009-03-09 Thread Joe Harman
On Mon, Mar 9, 2009 at 9:53 AM, Bob McConnell wrote: > From: Joe Harman >> >> I am using PHP to build an XML file, but I keep on getting an XML >> error when open the file in Google Chrome. >> > ---

[PHP] PHP Email Question

2010-09-19 Thread Joe Jackson
Hi Sorry for the simple question but I am trying to get my head around PHP. I have a sample PHP script that I am trying to use to send a php powered email message. The snippet of code is shown below mail('em...@address.com', 'Subject', $values['message'], "From: \"{$values['name']}\" <{

Re: [PHP] PHP Email Question

2010-09-20 Thread Joe Jackson
into the email body. I greatly appreciate all your expert advice and help. On Sun, Sep 19, 2010 at 11:37 PM, TR Shaw wrote: > > On Sep 19, 2010, at 6:00 PM, Joe Jackson wrote: > > Hi > > Sorry for the simple question but I am trying to get my head around PHP. I > have

Re: [PHP] PHP Email Question

2010-09-29 Thread Joe Jackson
Hi I am trying the following snippet as Bostjan suggested, and an email is getting sent when I submit the form however in the body of the email I am getting none of the form data in the body of the email. All I am getting is the letter 'z' ? Also in the from field of the email this is showing a

Re: [PHP] PHP Threading on Windows

2012-09-14 Thread Joe Watkins
On 14/09/2012 04:42, tamouse mailing lists wrote: On Thu, Sep 13, 2012 at 9:32 PM, admin wrote: It has been suggested: That because php does not support PCNTL threading on Windows that multiple services of php are an alternative. I am interested in this theory, if anyone is currently

Re: [PHP] PHP Threading on Windows

2012-09-14 Thread Joe Watkins
On 14/09/2012 04:42, tamouse mailing lists wrote: On Thu, Sep 13, 2012 at 9:32 PM, admin wrote: It has been suggested: That because php does not support PCNTL threading on Windows that multiple services of php are an alternative. I am interested in this theory, if anyone is currently

Re: [PHP] Re: Multithreading for OOP PHP

2012-11-03 Thread Joe Watkins
On 31/10/2012 13:46, Alex Nikitin wrote: Hey guys (and/or gals), I have heard this question entirely too many times, I think at some point Rasmus just stopped responding to it. The real reason that PHP is not threaded has nothing to do with PHP internal or extension thread safety, the reason is

[PHP] a shortcut to set variable

2011-04-12 Thread Joe Francis
eh, I just want to get a shortcut like $id = isset($_GET['id']) ? $_GET['id'] : 0; BTW, I'm using PHP5.3+, thanks bros. -- Powered By Francis™. Welcome to my website: http://www.francistm.com Rewrite to francis...@gmail.com please.

Re: [PHP] Help needed with php.ini

2011-06-06 Thread Joe Francis
I remember that there's 2 php.ini in Fedora, one is for SAPI like apache or other CGIServer, and another is for CLI. Can you confirm that you edited a right config file? On Mon, Jun 6, 2011 at 4:55 AM, Camilo Sperberg wrote: > On 05-06-2011, at 10:31, Adam Tong wrote: > > > Hi, > > > > I can'

Re: [PHP] php-cli-shebang

2011-06-08 Thread Joe Francis
why not using php.exe instead of php-cgi.exe as a parser ? On Wed, Jun 8, 2011 at 7:42 AM, Lists wrote: > Lists wrote: > >> Windows Server 2003 >> PHP fastcgi 5.2 >> > > > > O.K. '-q' is quiet mode (no header info), which works better when not using > the -f flag when calling the script (it appe

Re: [PHP] PHP book recommendations>

2005-02-15 Thread Joe Harman
e, 15 Feb 2005 14:20:05 -0500, Joe Harman <[EMAIL PROTECTED]> wrote: > sorry... wrong address > > > On Tue, 15 Feb 2005 14:19:46 -0500, Joe Harman <[EMAIL PROTECTED]> wrote: > > personally, I like Julie Meloni's books... PHP essentials.. and fast > > and

[PHP] Dynamic/runtime object creation

2005-02-16 Thread joe Lovick
? basically is their a create_object() style function, and some add_method() / add_member() style functions, that to allow me to instance things dynamically at runtime. sorry that i am not being to clear, but i hope you can get my gist, thanks in advance to any help any of you can give me! cheers joe

Re: [PHP] Password Protection

2005-02-16 Thread Joe Wollard
Kevin, I'm having some issues with my email client right now so I'm sorry if you've already found the answer. There is a way for PHP to do this without the need to modify your web server's configuration or bothering with .htaccess/ .htpasswd files by simply modifying the http headers that your

[PHP] Re: Dynamic/runtime object creation

2005-02-17 Thread joe Lovick
the code being prewritten. a bit like create_function() for lambada type functions, but in this case for my more general object code... and searching the hell out of all these formums gives me the classkit functions, so i guess i will try and install and give them a try... anyhow cheers joe -- PHP

[PHP] Weird Error Help

2005-02-17 Thread Joe Harman
ode... but the only thing that has happened since this error occured is that we moved the site to a new server Thanks, Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Weird Error Help

2005-02-18 Thread Joe Harman
ant error... I did add ob_start() and ob_flush() to the site... that seemed to reduce the occurance of the error though... Thanks! Joe On Thu, 17 Feb 2005 15:41:10 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> wrote: > Joe Harman wrote: > > Hey has anyone had an error like

Re: [PHP] PHP Extension & Arrays

2005-02-20 Thread Joe Wollard
Chris, I have a feeling I'm missing something but from what I'm gathering you want to be able to use the key of the array right along with the value. If that's what you need then the following should work: $array = my_array_creating_function(); while(list($key, $val) = each($array)){ echo ""

Re: [PHP] undefined ap_block_alarms in libphp5.so in spite of SHARED_CORE

2005-02-20 Thread Joe Wollard
Gene. I ran into a similar problem a long time ago and found that my issue was that I had foolishly tried to recompile php5 into the same paths without cleaning out the old php binaries. I don't know if this is what you are doing but if it is then as a thought you might want to make sure that a

[PHP] Samba wrapper

2005-02-20 Thread Joe Wollard
apper_register and thanks for any help or direction you can send me! -Joe Wollard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] source code protection

2005-02-26 Thread Joe Wollard
Shabanip, Zend provides a package for doing just this, but it comes with a price tag starting nigh to $1,000. You can find it here: http://www.zend.com/store/products/zend-encoder.php They do offer a free evaluation so you can "try before you buy" ;-) shabanip wrote: is there any way to protect

Re: [PHP] Inline Frame and php

2005-03-01 Thread Joe Harman
Hey Todd, I use iframe alot.. what you have to do is tell it a target... but, i am not sure if you can do that with header('Location:...") .. i would be interested to know also Joe On Mon, 28 Feb 2005 16:30:28 -0800, Todd Cary <[EMAIL PROTECTED]> wrote: > My client insi

Re: [PHP] Inline Frame and php

2005-03-01 Thread Joe Harman
Hey Todd... I really think what you are going to have to do is pass a javascript variable to the parent page.. cause you are trying to send a variable from the php search page to the parent that has the iframe in it... I am correct in assuming that? On Tue, 1 Mar 2005 16:33:58 -, Mikey <[EMAI

Re: [PHP] update of mysql to 4.1

2005-03-02 Thread Joe Wollard
x27;t forget the all important "make clean" command. I don't know who many times I've forgotten to do that when making major changes to the php binary. -Joe W. Peter wrote: Hi, i'm thinking of updating my mysql-server from 3.23 to 4.1.10, and i can't find any ser

Re: [PHP] PHP file as homepage?

2005-03-15 Thread Joe Harman
Hey Phil, this can be defined in the apache config file Joe On Tue, 15 Mar 2005 11:10:30 -0500, Phil Neeb <[EMAIL PROTECTED]> wrote: > I've noticed that PHP.net uses index.php as its homepage and well, I'm > curious as to how that's possible. Is it the server setup

[PHP] Memory use

2005-03-23 Thread Joe Wollard
Greetings, I'm trying to help a C programmer understand and use PHP for web development. So far all the similarities between C++ and PHP are making the process rather speedy. He asked what seemed like a very simple question, but I couldn't find the answer. The questions is how can you determine

[PHP] Storing Arrays in a database

2005-03-24 Thread Joe Harman
Hey, I was curious if anyone here stores arrays in MySQL... and how r u doing this... are you converting the values to a delimited string or is there another way? Thanks Joe -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Storing Arrays in a database

2005-03-24 Thread Joe Harman
k.. in the past i have been using implode and explode... i have yet to try serialize yet... but i will be giving it a whirled in about 5 minutes... Thanks... just looking for a better way to do things Cheers & thanks for the help! Joe On Thu, 24 Mar 2005 14:23:05 -0600, [EMAIL PROTE

Re: [PHP] OR statement

2005-03-24 Thread Joe Wollard
This can also be done with double pipes, which is what is used in many other languages. - if($audio=="Cool" || $audio=="junk" || $audio=="Funky"){ Do this } else{ Do this } -- As far as I can tell there are no plans to remove or reaso

Re: [PHP] html image

2005-03-25 Thread Joe Harman
http://www.snapfiles.com/get/web2pic.html good luck! let us know what you find! Joe On Fri, 25 Mar 2005 19:47:43 +0200, Dotan Cohen <[EMAIL PROTECTED]> wrote: > On Thu, 24 Mar 2005 20:48:50 +0200, delos <[EMAIL PROTECTED]> wrote: > > i would like to produce a script that can

<    1   2   3   4   5   6   7   8   >