[PHP] mail list test - ignore!

2005-08-18 Thread Paul Nicholson
Hey guys! Just testing... Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How can I populate or bypass the mod_auth_mysql prompt

2003-09-19 Thread Paul Nicholson
using: http://username:[EMAIL PROTECTED]/protected_section/ HTH! HAND! ~Paul - -- ~Paul Nicholson Design Specialist @ WebPower Design [EMAIL PROTECTED] www.webpowerdesign.net "The webthe way you want it!" "It said uses Windows 98 or better, so I loaded Linux!" Regist

Re: [PHP] php and html differences

2003-03-02 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Use Smarty(http://smarty.php.net/) and Maguma Studio(http://www.maguma.com/). ~Paul On Sunday 02 March 2003 07:13 pm, Sunfire wrote: > where could i get a templet editor from that is good and fairly easy to > use? > [snip] - -- ~Paul

[PHP] Re: Re: Re: Editors

2003-02-27 Thread Paul Nicholson
t 3.1 . If I understand correctly you have to > have a copy of W$ 9X (or whatever). If this is true then I can't use wine > because I don't have a usable copy of W$. Has this changed in the past few > years? > > Thanks > JIM > PS Been useing SuSE since version 4.4.1 :) - -

Re: [PHP] Re: Re: Editors

2003-02-26 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wednesday 26 February 2003 02:19 pm, James Hatridge wrote: [snip] > Thanks for the address. I looked into it closer and I find that it is only > for Windows. Pity. It will run on linux using wine. Yes, I've tried it...it works! ~Paul

Re: [PHP] is this better or is it still in html?

2003-01-20 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 It is better:) On Sunday 19 January 2003 10:59 pm, Karl James wrote: > Karl - -- ~Paul Nicholson Design Specialist @ WebPower Design [EMAIL PROTECTED] www.webpowerdesign.net "The webthe way you want it!" "It said uses Window

Re: [PHP] files no longer upload!

2003-01-20 Thread Paul Nicholson
ne nothing to my code and now is_uploaded_file is constantly > false, even when uploading a file every time. I dunno what to do, would > someone want to look at my code and tell me what I did wrong; I'm out of > ideas. > > Phil - -- ~Paul Nicholson Design Specialist @ WebPowe

Re: [PHP] unlink ($files);

2003-01-07 Thread Paul Nicholson
/*.*"; > Warning: Unlink failed (No such file or directory) in > /mnt/ls6/17/169//htdocs/2003/_admin/del_listing_action.php on line > 16 > > Warning: RmDir failed (File exists) in > /mnt/ls6/17/169//htdocs/2003/_admin/del_listing_action.php

Re: [PHP] How to override header info in mail()

2002-11-30 Thread Paul Nicholson
header information - headers already sent by (output > started at /users/ppowell/web/recommend.php:13) in > /users/ppowell/web/recommend.php on line 104 > > > Phil > - Original Message - > From: "Paul Nicholson" <[EMAIL PROTECTED]> > To: "Phil Powe

Re: [PHP] How to override header info in mail()

2002-11-30 Thread Paul Nicholson
cating > that header information has already been set prior to emailing. > > Is there a way to overwrite only certain header information prior to > emailing to ensure the content-type of the email being either text/plain or > text/html? > > Just wondering > Thanx > Phil

Re: [PHP] New commercial software needs beta testers

2002-11-19 Thread Paul Nicholson
t; > > > functional > > > > > software for this product to test with. You must provide your own > > > > server > > > > > and > > > equipment to do the beta testing with. > > > > > > At the end of the beta testing period for t

Re: [PHP] Errors and Logging Configuration Options: docref-root

2002-11-09 Thread Paul Nicholson
t; display_errors = On > log_errors = On > html_errors = On > error_log = "/XX/YYYYY/ZZZZZ/php.err" > docref_roof = /manual/php4_manual > docref_ext = .html > > Best regards > > Stefan Schiller - -- ~Paul Nicholson Design Specialist @ WebPower Design

Re: [PHP] HTML forms & php 4.2.3 - how to get cvs fix applied

2002-11-09 Thread Paul Nicholson
atest version > 4.2.x? (I'm assuming its branched - I've not looked at any of this yet) > > Is there not a patch? Could I just checkout the applicable files? > > http://snaps.php.net/ wasn't avilable at the time of writing this - > possibly it would have given

Re: [PHP] Securing PHP Code with GET | POST | SESSIONS or other things

2002-11-08 Thread Paul Nicholson
; The server is a national web host, one of two I may be using... both of > which are reasonably secure. - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] www.webpowerdesign.net "It said uses Windows 98 or better, so I lo

Re: [PHP] Installation error with 4.2.3

2002-11-06 Thread Paul Nicholson
nssl=/usr/local/openssl' '--with-gd=/usr/local' > '--with-freetype-dir=/usr/local' '--with-ttf=/usr/local' > '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/local' > '--with-t1lib=/usr/local' '--with-zlib' '

Re: [PHP] PHP/MySql Array problem (newbie)

2002-11-05 Thread Paul Nicholson
> You can't send the whole array into on "cell". Try doing: > > echo $array; > > and you'll see what I mean. > > You will need to insert each element individually. - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!&q

Re: [PHP] Php "Ready-to-go"

2002-11-04 Thread Paul Nicholson
dir% and creates shortcut to my main programm file: > "php_gtk main.php" > > if you don't need gtk - I think you should dig around a shortcut some > like this "php.exe your_script.php" - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webt

Re: [PHP] Re: Dazed and Confused

2002-10-30 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 oopsforgot the &. array_walk($myarray, array(&$this, 'DoArrayStuff'),1); On Wednesday 30 October 2002 02:38 pm, Paul Nicholson wrote: > try(untested): array_walk($myarray, array($this, 'DoArrayStuff'),1); >

Re: [PHP] Re: Dazed and Confused

2002-10-30 Thread Paul Nicholson
', 'this->DoArrayStuff', > '$this->DoArrayStuff' but none work. > The only way I can seem to use DoArraySuff is to define the funcion > seperate(outside) from the class, which seems kind of odd since the only > time the function is needed is internal

Re: [PHP] POST-ing or GET-ing an array

2002-10-29 Thread Paul Nicholson
t; > $sql = "select stuff from my_table"; > > $result = mysql_query($sql); > > $count = 0; > > > > while ($myrow = mysql_fetch_assoc($result)) { > > $id = $myrow["id"]; > > $my_array[$count] = $id; > > } > > > &

Re: [PHP] Webserver-Administration

2002-10-28 Thread Paul Nicholson
on, 28 Oct 2002, [ISO-8859-1] Jochen Kächelin wrote: > > How can I use PHP to admin my Apache over the browser? > > > > How do big providers allow their customers to admin their > > subdomains, forwarders, ftp-accounts over the webbrowser? > > > > Apache shoul

Re: [PHP] extract($_POST)

2002-10-25 Thread Paul Nicholson
retrieve *only* the vars you need from POST, you should also filter them to make sure they contain what you're looking for.is_alpha($_POST['name']). And no, php doesn't have an 'is_alpha' functionI created that as part of a filtering class. ~Paul - -- ~Paul

Re: [PHP] Problem with fputs/fgets

2002-10-16 Thread Paul Nicholson
#x27;ll look it up. ~Paul On Wednesday 16 October 2002 09:55 pm, Jason Young wrote: > Oh.. I had no idea.. I suppose I will be looking that up then ;-) > > Thanks for the heads up! > -Jason > > Paul Nicholson wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 &

Re: [PHP] $_SESSION

2002-10-16 Thread Paul Nicholson
> > > header("Location: welcome.php"); > > > mysql_free_result ($res); > > > > > > > Nope. Just use $_SESSION['SESSION_UNAME'] = $user; > > > > You can treat $_SESSION just as you would any other array. > > > >

Re: [PHP] Problem with fputs/fgets

2002-10-16 Thread Paul Nicholson
op,"uidl\r\n"); // Get list of messages >$list = fgets($pop,255).""; >$list = substr($list, 4, strpos($list, " ", 3)); >for ($i = 1; $i <= $list; $i++) { > $curr = fgets($pop); > echo " "))."\">$curr"

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
ut rather than file size limitation. > > CYA, Dave He is posting without files and it still stops at 5 and if it was timeout wouldn't it say something like max_execution_time exceeded? - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!&quo

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
said before, however.. even without throwing files there, my loop > test code only spits out '01234', meaning that its only looping 5 times > through the code before exiting... Does file handling only allow for 5 > files at a time?? > > -Jason - -- ~Paul Nicholson Design

Re: [PHP] Re: Another odd file problem / Limit on File uploads?

2002-10-15 Thread Paul Nicholson
rrent')"; > > $log_result = mysql_query($log_query) or die ("Couldn't Insert > > Picture Record!"); > > } > > } > > */ -- End curiosity mode ;-) > > $current++; > > } > > > > On my output, I just get 01234 .. 5 e

Re: [PHP] Inserting special characters into text fields

2002-10-14 Thread Paul Nicholson
he number pad will give the > > character. I'm afraid I don't know the equivalent if your client > > computers run linux (I'm sure there is one and its just my ignorance). > > I'd be interested to know the answer. > > > > HTH > > Chris > > &

Re: [PHP] Best Forum System

2002-10-12 Thread Paul Nicholson
one. What exactly is the best forum system out there? I'm mainly > after a PHP one but a Perl or CGI one will do just fine. Thanks! > > Thanks, > Stephen Craton > http://www.melchior.us > http://php.melchior.us - -- ~Paul Nicholson Design Specialist @ WebPower Design

Re: [PHP] Best Forum System

2002-10-12 Thread Paul Nicholson
stest forum software I've seen. On Friday 11 October 2002 09:13 pm, Stephen scribbled: > I'd use that but the skinning difficulty compared to others is just down > right horrible... > > > ----- Original Message - > From: "Paul Nicholson" <[EMAIL PRO

[PHP] Re: Mysqldump

2002-10-06 Thread Paul Nicholson
trying to dump the text file contents to mysql which was already > backup from mysql only..While trying to dump it is telling access denied > error > > i am trying from here > > d:\mysql\bin>mysqldump databasename txt.file name > > Can anyone tell me how to go abou

Re: [PHP] no errors ?

2002-10-03 Thread Paul Nicholson
ror: parse error, unexpected T_STRING in c:\program files\apache > group\apache\htdocs\real\1.php on line 2 > > [results in the Apache/access..log] 127.0.0.1 - - [03/Oct/2002:13:36:08 > +0530] "GET /real/1.php HTTP/1.1" 200 161 > --- > I hope this provides enough informa

Re: [PHP] Incrementing the value

2002-10-02 Thread Paul Nicholson
incremented and fetch the > value from the database according to that..the same thing is working in > linux platform and it is not working for the windows platform..the value is > not getting increment..Can anyone please tell me how to go about with > this..?? > > Regards, > U

Re: [PHP] no errors ?

2002-10-02 Thread Paul Nicholson
s follows : > > qwe; > > > dsf > ?> > > But i dont get even a parse error or anything > > Any clues to what is going wrong ? > > thx > > gamin. - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PRO

Re: [PHP] backwards compat for newly developed scripts ($_GET / $HTTP_GET_VARS)

2002-10-02 Thread Paul Nicholson
ep on running away, ain't it? Thats if they notice the one or two clients that leave over this issue. :| - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said uses Windows 98 or better, so I loaded Linux!" Registered L

Re: [PHP] Incrementing the value

2002-10-01 Thread Paul Nicholson
et incremented and fetch the value > from the database according to that..the same thing is working in linux > platform and it is not working for the windows platform..the value is not > getting increment..Can anyone please tell me how to go about with this..?? > > Regards, >

Re: [PHP] Wanting to better understand

2002-10-01 Thread Paul Nicholson
If ($days > 45) { $days = "" . $days . ""; }elseif ($days > 30) { $days = "" . $days . ""; } - ~Paul On Tuesday 01 October 2002 11:09 pm, Paul Nicholson wrote: > Hey, > ok, I'm not sure if I totally understand

Re: [PHP] backwards compat for newly developed scripts ($_GET / $HTTP_GET_VARS)

2002-10-01 Thread Paul Nicholson
x27;t it be better to force them now, than provide backward > compatibility for _new_ scripts?[/snip] Thats if the user has the option to upgrade - some system admin don't like to do their job...I know of quite a few isps still running 4.0.6:( ~Paul - -- ~Paul Nicholson Design Specialist

Re: [PHP] Wanting to better understand

2002-10-01 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 yeah, I know...duh! *yawn* long nite...I'll see y'all in the morn. :) ~Paul On Tuesday 01 October 2002 11:22 pm, Chris Shiflett wrote: > Paul Nicholson wrote: > >If ($days > 30) { > >$days = ""

Re: [PHP] Wanting to better understand

2002-10-01 Thread Paul Nicholson
5") { > $days "" . $days . ""; > > } > > But, the second value is over riding the first vaule so I can't see the > differents. I sorry that this might be confusing but I am trying to ask the > way I can. I am not sure what you call this, expres

[PHP] backwards compat for newly developed scripts ($_GET / $HTTP_GET_VARS)

2002-10-01 Thread Paul Nicholson
T_VARS; $_GET = &$HTTP_GET_VARS; } - ? That allows you to use $_GET as if you were using the new versions and it only requires one lineand doesn't depend on the new versions to have $HTTP_*_VARS. It also works for the other vars(POST, SESSION, etc). ~Paul - -- ~Paul Nicholson Design

Re: [PHP] How to get a total...

2002-10-01 Thread Paul Nicholson
invoice that I am tracking. I know > this is got to be simple but it hard if I do have example of the commands > to do it. > > Chuck Payne > Magi Design and Support - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTE

Re: [PHP] using CURL to post data to a search engine

2002-09-27 Thread Paul Nicholson
eam to be much info or examples on using curl with php > is there anyplace that you know of that has more info than the manual - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said uses Windows 98 or better, so I loaded

Re: [PHP] HELP: Carriage returns don't display in HTML

2002-09-27 Thread Paul Nicholson
ript function that will convert carriage return to > tags, but is there a PHP function that will add or tags to a text > form field in place of the carriage returns a user might add. > > Thanks in advance! > -NorthBayShane - -- ~Paul Nicholson Design Specialist @ WebPower Desig

Re: [PHP] Looking for a forum

2002-09-26 Thread Paul Nicholson
ne post a link to something useful? > John - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said uses Windows 98 or better, so I loaded Linux!" Registered Linux User #183202 using Register Linux System # 818

Re: [PHP] right name for

2002-09-24 Thread Paul Nicholson
> > > order deny,allow > deny from all > > > I'm using php-4.2.3 (compiled with apxs2) and apache-2.0.41-dev. The > PHP module *is* being loaded in another included file, but it doesn't > matter if I put the above in an external file or in httpd.conf i

Re: [PHP] Editor

2002-09-21 Thread Paul Nicholson
anyone could recomend a good editor that is > based on windows. Thanks, Bryan - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said uses Windows 98 or better, so I loaded Linux!" Registered Linux User #183202

Re: [PHP] Apache not parsing without .php on url?

2002-09-20 Thread Paul Nicholson
ot;http://my.server.se/abc/test"; > > Any tips in what i missed out in configuration or how to fix this would be > appreciated. > > best regards, > Stefan - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "I

Re: [PHP] editor php

2002-09-19 Thread Paul Nicholson
ere i can find? > tanks -- Gian Michele - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said uses Windows 98 or better, so I loaded Linux!" Registered Linux User #183202 using Register Linux System # 81891 -BE

Re: [PHP] Unserialize stopped working after php & db upgrade

2002-09-19 Thread Paul Nicholson
Caplan wrote: > Paul, > > PN> It looks like that string has been serialized multiple times > > Many thanks - that is the problem! I think that this qualifies as one > of my more creative bugs... > > Can I ask you how you spotted this? Pretty impressive, considering you > on

[PHP] Re: Unserialize stopped working after php & db upgrade

2002-09-18 Thread Paul Nicholson
";s:17:"list_2_5_man_code";s:0:"";s:13:"list_2_5_code"; s:0:"";s:13:"list_2_5_sort";s:0:"";}} - Yes, you'll need to delete the line breaks and make that one line. As far as the format, I'm not sure of a url/manpage

Re: [PHP] Unserialize stopped working after php & db upgrade

2002-09-18 Thread Paul Nicholson
s in the > strings affected, nor are the strings urlencoded. > > I have no idea how to go about fixing this and I am under serious > pressure to get the server back up ASAP - so I am very much hoping > that to get a response from the list. - -- ~Paul Nicholson Design Specialist @ Web

Re: [PHP] Re: Large uploads

2002-09-18 Thread Paul Nicholson
The server seems to just drop the connection since IE just > > tells me that the server didn't respond. > > > > Please help. > > > > Rickard. - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED]

Re: [PHP] refresh function?

2002-09-11 Thread Paul Nicholson
o refresh a page? > > Thanks in advance, > -Peter - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said uses Windows 98 or better, so I loaded Linux!" Registered Linux User #183202 using Register Linux System

Re: [PHP] Weird fileupload problem

2002-09-09 Thread Paul Nicholson
0M is a lot, I hope its just a temp value:) HTH! ~Pauly On Monday 09 September 2002 11:22 am, Trond Arve Nordheim wrote: > On Mon, Sep 09, 2002 at 10:29:04AM -0400, Paul Nicholson wrote: > > Hey, > > First of all, you can *not* set the upload size via .htaccess. You have > > to

Re: [PHP] Weird fileupload problem

2002-09-09 Thread Paul Nicholson
just > empties the superglobal arrays... Is there any other settings I have to > change for this to work? - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said uses Windows 98 or better, so I loaded Linux!&qu

Re: [PHP] file upload > 2 MB

2002-09-09 Thread Paul Nicholson
> > # special settings for webmailer > >php_flag upload_max_filesize = 50M > > > Does anybody has an idea? > > Thanx for any help, > > Andy - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] &qu

Re: [PHP] Troubles Inserting into MYSQL

2002-09-08 Thread Paul Nicholson
ust don't get it! > > > if ($update_type == update_Williams) { > mysql_query("INSERT INTO events ('user', 'detaildesc', 'index', > 'reference', 'date_added') VALUES (\'$cookiewho\', > \'$add_Williams\',\'\&#

Re: [PHP] dropdown Newbie question

2002-09-05 Thread Paul Nicholson
> //end dropdown > > > > // Button > > echo '  '; > > > > //doesnt work: > > $var_from_dropdown = theme > > > > // ..SNIP ... > > > > > > What did i do wrong? > > > > Thank you! > > Mario > > > > &

Re: [PHP] PHP 4.2.2 install problem

2002-09-03 Thread Paul Nicholson
file. If these lines are not there did I > do something wrong, or can I just add them. If I can just add them, where > to I add them. > > Thanks, Mark. - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said

Re: [PHP] creating mail on submitting a form.

2002-09-03 Thread Paul Nicholson
t; > Thanx and regards > anil - -- ~Paul Nicholson Design Specialist @ WebPower Design "The webthe way you want it!" [EMAIL PROTECTED] "It said uses Windows 98 or better, so I loaded Linux!" Registered Linux User #183202 using Register Linux System # 81891 -BEGIN PGP S