Re: [PHP] Linux Question

2002-11-25 Thread Brian V Bonini
On Mon, 2002-11-25 at 10:35, > > conbud wrote: > > > > >Hey. This really isnt a PHP question. but what fonts do you reccomend > using > > >so they look decent on linux. Mainly looking for a good font that will > look > > >nice in MoZilla and Galeon. Almost all the fonts Ive used so far appear > >

Re: [PHP] Linux Question

2002-11-25 Thread Brian V Bonini
On Mon, 2002-11-25 at 18:26, Justin French wrote: > on 26/11/02 2:41 AM, Brian V Bonini ([EMAIL PROTECTED]) wrote: > > > Also, try to use relative sizes, if you use fixed sized like 10pt. you > > will have size discrepancies on different platforms. If you use a > > rela

Re: [PHP] Linux Question

2002-11-26 Thread Brian V Bonini
On Mon, 2002-11-25 at 20:22, Justin French wrote: > > I don't think I was being clear enough at all :) 12px is 12pixels... there > is no way for it to *reliably* be reset to 14px, or 10px by the user on all > browser. That's like saying 10% is 10%. 10% of what? The physical size of a pixel vari

Re: [PHP] forum?

2002-12-24 Thread Brian V Bonini
On Tue, 2002-12-24 at 09:51, Fatih Üstündağ wrote: > do you know freeware forum in php I can easly use? Phorum http://phorum.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] ftp and www

2003-01-07 Thread Brian V Bonini
On Tue, 2003-01-07 at 15:16, Mukta Telang wrote: > May be it means that it should be possible to browse ftp directory > from a browser? Which is entirely possible without PHP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Loading CSV data into MySQL

2003-02-01 Thread Brian V Bonini
Sorry for the OT question: I'm loading a .csv file into MySQL, done it a million times but for some reason it is scrambling the row order. All the fields are making it in correctly but the order of the rows seems to end up totally random. I've done this a million times and never saw this.. Any t

Re: [PHP] Re: Loading CSV data into MySQL

2003-02-01 Thread Brian V Bonini
On Sat, 2003-02-01 at 16:47, Thomas Seifert wrote: > > > > I'm loading a .csv file into MySQL, done it a million times but for some > > reason it is scrambling the row order. All the fields are making it in > > correctly but the order of the rows seems to end up totally random. I've > > done this

RE: [PHP] Loading CSV data into MySQL

2003-02-01 Thread Brian V Bonini
On Sat, 2003-02-01 at 17:25, John W. Holmes wrote: > > I'm loading a .csv file into MySQL, done it a million times but for > some > > reason it is scrambling the row order. All the fields are making it in > > correctly but the order of the rows seems to end up totally random. > I've > > done this a

RE: [PHP] Loading CSV data into MySQL

2003-02-02 Thread Brian V Bonini
On Sat, 2003-02-01 at 20:07, John W. Holmes wrote: > > Then use an ORDER BY in your query. If you're relying on the database to > spit out rows in the order they went in, then you're wrong. Hey man thanks for pointing that out... I know it's wrong, I didn't design it but it's what I have to

[PHP] Text size in image

2003-02-02 Thread Brian V Bonini
When creating an image using the image functions how do you control the type face size? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Text size in image

2003-02-03 Thread Brian V Bonini
On Sun, 2003-02-02 at 20:50, Tom Rogers wrote: > Hi, > > Monday, February 3, 2003, 8:24:00 AM, you wrote: > BVB> When creating an image using the image functions how do you control the > BVB> type face size? > > If you are using imagestring() the size is determined by the font number (1 - 5) > fo

[PHP] image size from text/font size

2003-02-03 Thread Brian V Bonini
Trying to set the image size based on the amount if text/fontsize, etc... Looked through a bunch of the functions but nothing is jumping out at me. Does anyone have an example and or can point me to the correct function(s) for this. -- PHP General Mailing List (http://www.php.net/) To unsubsc

[PHP] text color in image

2003-02-03 Thread Brian V Bonini
Any idea why this would NOT create white text? $png = ImageCreatefrompng("images/menu0.png"); $tx_color = ImageColorAllocate($png,255,255,255); imagettftext($png,12,0,25,16,$tx_color,$font,$text); There IS white (255,255,255) in the source png's palette, I don't know weather that makes a differe

[PHP] 'superglobal'

2003-02-05 Thread Brian V Bonini
What is it that has to be set in php.ini for a superglobal to work? -- - -- Brian V Bonini -=gfx-Design=- [EMAIL PROTECTED] __ gfx-Design --Web Design and Hosting Services-- http://www.gfx-design.com http://www.gfxdesign.net [EMAIL PROTECTED

Re: [PHP] 'superglobal'

2003-02-05 Thread Brian V Bonini
On Wed, 2003-02-05 at 19:04, Kevin Waterson wrote: > This one time, at band camp, > Brian V Bonini <[EMAIL PROTECTED]> wrote: > > > What is it that has to be set in php.ini for a superglobal to work? > > You dont need to set anything, they work out-of-the-box >

[PHP] Config problems

2003-02-06 Thread Brian V Bonini
Been using PHP for some time but never have actually compiled my own, the version my provider compiled always sufficed, anyway, I I'm having some issues. config fails here: checking for GD support... yes checking for the location of libjpeg... yes checking for the location of libpng... yes checki

[PHP] upgrade issues

2003-02-06 Thread Brian V Bonini
What's wrong with this snippet of code that would make it stop working after upgrading from 4.0.6 to 4.3.0 Stuff './configure' '--with-apxs=/usr/local/www/bin/apxs' '--with-config-file-path=/usr/local/www/etc' '--enable-versioning' '--with-system-regex' '--disable-debug' '--enable-tra

Re: [PHP] Re: Config problems

2003-02-06 Thread Brian V Bonini
On Thu, 2003-02-06 at 10:03, Goetz Lohmann wrote: > Brian V Bonini schrieb: > > Been using PHP for some time but never have actually compiled my own, > > the version my provider compiled always sufficed, anyway, I > > I'm having some issues. > > NOTE: once compile

[PHP] 4.0.6 to 4.3.0

2003-02-07 Thread Brian V Bonini
Any thoughts as to why this snippet: 25: if ($attach != "none") 26: { 27:$file = fopen($attach, "r"); 28:$contents = fread($file, $attach_size); 29:$encoded_attach = chunk_split(base64_encode($contents)); 30:fclose($file); would produce these errors: Warning: fread(): supplied a

RE: [PHP] 4.0.6 to 4.3.0

2003-02-07 Thread Brian V Bonini
On Fri, 2003-02-07 at 09:44, Rich Gray wrote: > > > > Any thoughts as to why this snippet: > > > > 25: if ($attach != "none") > > 26: { > > 27:$file = fopen($attach, "r"); > > 28:$contents = fread($file, $attach_size); > > 29:$encoded_attach = chunk_split(base64_encode($contents)); > >

RE: [PHP] 4.0.6 to 4.3.0

2003-02-07 Thread Brian V Bonini
On Fri, 2003-02-07 at 10:13, Rich Gray wrote: > Hi Brian > > Why are you using $_GET[] when your form is submitting via the 'post' > method? My bust, just a typo. It's actually: if ($attach != "none") that is beign used anyway. > Secondly for file uploads why are you not using the $_FILES[] > s

Re: [PHP] Alternating Row Colors in PHP........

2003-02-08 Thread Brian V Bonini
On Sat, 2003-02-08 at 18:25, CF High wrote: > Hey all. > > I'm coming from Cold Fusion to PHP; in CF I could alternate rows with the > following: > > > > Any ideas how to do this in PHP? > One possibility: while (whatever) { $bgcolor = ($i++ & 1) ? '#c0c0c0' : '#ff'; echo "bla-bla

[PHP] Counter has gremlins

2003-02-17 Thread Brian V Bonini
I have this basic counter: $counterFile"); } print "Visitor #$num"; } if (!file_exists($counterFile)) { exec("echo 1 > $counterFile"); } displayCounter($counterFile); ?> Works like a charm but every so often for no appare

[PHP] World Pac

2003-07-09 Thread Brian V Bonini
http://catalog.worldpac.com/webparts-overview.html Before I go figuring this out from scratch... Has anyone here worked with their Java API and interfaced with it via PHP? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] skipping occurance in regex

2003-05-29 Thread Brian V Bonini
how can you skip the first occurance and stop at the second in a regex? content1 content2 If I wanted to grab all that from within a document I know I can start at table id= because it's unique but how do I skip the first and stop at the second

Re: [PHP] What's wrong with this code??

2003-05-31 Thread Brian V Bonini
On Fri, 2003-05-30 at 20:02, Beauford wrote: > Your right though, the code is awkward - but I couldn't think of any other > way of doing it. > > Any suggestions? > switch http://us4.php.net/manual/en/control-structures.switch.php -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] Any POSTNUKER, reading from two DB

2003-06-01 Thread Brian V Bonini
On Sat, 2003-05-31 at 07:41, nabil wrote: > Greeting, > > I have a postnuke site and I want to connect it to two databases in order to > verify users from these databases. and..?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: cheap PHP+SQL WebHosting

2003-06-02 Thread Brian V Bonini
On Sun, 2003-06-01 at 13:05, Ryan A wrote: > Hey there, > I think i can offer you one of the best packages you will ever find > 8.50$ a month or 8$ if you pay per year I think you should take this private... > > FEATURES > -- > > One click to install > > Portals/CMS > P

Re: [PHP] string question

2003-06-11 Thread Brian V Bonini
On Wed, 2003-06-11 at 10:42, Mukta Telang wrote: > Hi, > if a string is: > $x="A.B. XYZ"; > and if I post it as a hidden form control and echo $_POST['x'] then I > get: > A.B. > and not "A.B. XYZ" ! > What should I do? > Mukta $x = 'A.B. XYZ'; -- PHP General Mailing List (http://www

Re: [PHP] Problem in windows

2003-06-14 Thread Brian V Bonini
I love that subject line... All I could think was, "of course"... Sorry, couldn't resist that.. ;-) On Sat, 2003-06-14 at 08:02, James Stanley wrote: > Hello, > > I just installed php/mysql on my windows machine, now when I try to run > a script I get this: > > Use of undefined constant s_UID

Re: [PHP] php editor?

2003-06-15 Thread Brian V Bonini
For Linux: Bluefish... On Sat, 2003-06-14 at 07:15, Ryan A wrote: > I have tested quite a few editors since i came to php as notepad started to > p1ss me off after some time... > I have never really touched vi so cant say much about that but I think Zend > is pretty good (ill even dare say better)

Re: [PHP] CSS help

2003-06-18 Thread Brian V Bonini
On Wed, 2003-06-18 at 07:14, Angelo Zanetti wrote: > Hi guys sorry for the off topic post. > > i am not getting any success with Css @ the moment. > > What I need is basically a class in my CSS file that defines everything about A > links. > > I have this class but it aint working (i know its w

Re: [PHP] .htaccess files

2003-06-18 Thread Brian V Bonini
On Wed, 2003-06-18 at 18:34, Steve Marquez wrote: > Hello everyone, > > Could someone point me in the direction of some info on .htaccess files? > Could someone send me one, tell me where to put it in my > server? I hope this is not a stupid question. I am running Apache on a Mac > with Jaguar OSX

Re: [PHP] Standalone PHP Client?

2003-06-20 Thread Brian V Bonini
On Fri, 2003-06-20 at 13:57, Galen P. Zink wrote: > I work for a small networking company. We're working on a piece of > software that will be run server-side with PHP and MySQL. It allows the > user to develop an online store and handles all the complex shopping > cart stuff with ease. It is a

[PHP] Content-Type:

2003-06-27 Thread Brian V Bonini
This could be an Apache issues, not really sure. I'm trying to output a php doc as text/css using But no matter what I do, changing it in the document, adding/altering apache mime types, all I get is text/html. The reason is I'm trying to use @import url('xx.css.php') and Mozilla seems to be ver

[PHP] mime type

2003-06-27 Thread Brian V Bonini
I want to get php to output text/css for one .php file. I tried using header() and ini_set () but seems no matter what I do the Content-type remains text/html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: mime type

2003-06-27 Thread Brian V Bonini
ong in assuming either of these functions should override the global configs? > > > Brian V Bonini wrote: > > I want to get php to output text/css for one .php file. I tried using > > header() and ini_set () but seems no matter what I do the Content-type > > remains

RE: [PHP] Re: mime type

2003-06-27 Thread Brian V Bonini
ide PHP's default mime-type of text/html in php.ini I even tried setting it explicitly in Apache's mime config. but still PHP insists on outputting text/html Good thought though.. :) > > -Original Message----- > From: Brian V Bonini [mailto:[EMAIL PROTECTED] > Sent: Friday, J

[PHP] @import

2003-06-27 Thread Brian V Bonini
Can anyone make this work with Mozilla? @import url("site.css.php"); No matter what I try , header("Content-type: text/css") or ini_set to will not output anything other then text/html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] @import

2003-06-27 Thread Brian V Bonini
On Fri, 2003-06-27 at 20:21, Leif K-Brooks wrote: > Brian V Bonini wrote: > > >Can anyone make this work with Mozilla? > > > > > >@import url("site.css.php"); > > > > > >No matter what I try , header("Content-type: text/css&q

Re: [PHP] @import

2003-06-27 Thread Brian V Bonini
On Fri, 2003-06-27 at 21:02, Brian V Bonini wrote: > On Fri, 2003-06-27 at 20:21, Leif K-Brooks wrote: > > Brian V Bonini wrote: > > > > >Can anyone make this work with Mozilla? > > > > > > > > >@import url("site.css.php"); > >

RE: [PHP] @import

2003-06-28 Thread Brian V Bonini
pe via header() would over ride it on a per file basis but apparently not or at least not for me... Still trying to figure out why, but, it is working now.. > > -Original Message----- > From: Brian V Bonini [mailto:[EMAIL PROTECTED] > Sent: Saturday, June 28, 2003 11:02 AM > To: L

Re: [PHP] Else If/Elseif

2003-06-30 Thread Brian V Bonini
On Mon, 2003-06-30 at 09:30, Stevie Peele wrote: > What is the difference between "else if" and "elseif"? > > chr(32).. bwahahahah!!! Sorry. couldn't resist -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHPMyAdmin interface

2002-07-24 Thread Brian V Bonini
Why don't you just install a copy on the server? If the only access you have is through the mysql monitor program then you must have shell access so installing your own copy of phpMyAdmin should not be an issue. But, if your going to access it remotely from a win machine I would use MySQL-Front i

RE: [PHP] Image upload into database

2002-07-24 Thread Brian V Bonini
Just curious why you don't upload the image to a dir and just store the link in the db? > -Original Message- > From: Jesse Lawrence [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, July 24, 2002 7:44 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Image upload into database > > > I've setup an i

[PHP] Brain Fart- table formatting help

2002-07-29 Thread Brian V Bonini
I'm having a total brain fart and can not seem to get the right logic for this... I'm trying to format the output of a db query with alternating row colors, the thing is the usual if ($i%2) {} will not work here because the alternating colors do not necessarily fall on odd or even rows. The one

RE: [PHP] Brain Fart- table formatting help

2002-07-29 Thread Brian V Bonini
($i%2) { etc. } ??? -B > -Original Message- > From: Jay Blanchard [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 29, 2002 9:19 AM > To: 'Brian V Bonini'; [EMAIL PROTECTED] > Subject: RE: [PHP] Brain Fart- table formatting help > > > [snip] > I'm

RE: [PHP] Brain Fart- table formatting help

2002-07-29 Thread Brian V Bonini
> Ah, well... that was not clearly explained in your first post. You wanted > alternating rows colors, and that is what I gave you. Let's see if I > understand the question; > > For each show_title there are multiple rows of data, but they do not match > row counts from show to show? > You want th

[PHP] Sorting Output

2002-07-30 Thread Brian V Bonini
I have a db with the following fields: id | month | company | title | name | role | show_company | show_title | show_month sql query is: "select * FROM db ORDER BY month DESC"; Output gets formatted like: month - company - title name role name role - title name role - com

RE: [PHP] Re: PHP4 and MS Excel?

2002-07-30 Thread Brian V Bonini
file | save as then chose the format you want in the drop down box > -Original Message- > From: Jason Caldwell [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 30, 2002 2:46 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: PHP4 and MS Excel? > > > So -- it looks like I can connect to Excel

RE: [PHP] sort results into two columns

2002-08-01 Thread Brian V Bonini
link1linka linklinke I suppose an example of the sql query you attempting to use and perhaps an idea of how your db is structured would help a little.. ;-) > -Original Message- > From: kompresor [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 01, 2002 10:23 AM > To: [EMAIL PR

[PHP] Function search utility

2002-08-02 Thread Brian V Bonini
There used to be a utility that let you search php functions from the address bar in your browser by simply appening PHP to the function name eg, php mail I thikn it might of been an IE only thing... I can't remember were I originally got it form and can not find it again, does anyone know? -Bri

RE: [PHP] Re: Function search utility

2002-08-02 Thread Brian V Bonini
t; Subject: [PHP] Re: Function search utility > > > It still works...try http://www.php.net/mysql or > http://www.php.net/fopen for example... > > /lasso ([EMAIL PROTECTED]) > > > > Brian V Bonini wrote: > > There used to be a utility that let you search p

RE: [PHP] Next and Previous links

2002-08-09 Thread Brian V Bonini
Could you send me the URL's for the MySQL examples? Thanks!! > -Original Message- > From: webmaster [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 09, 2002 10:36 AM > To: [EMAIL PROTECTED] > Subject: [PHP] Next and Previous links > > > Hello, > > I've been trying write a .php page t

RE: [PHP] Re: including a php file in an html doc

2002-08-12 Thread Brian V Bonini
Because your trying to put PHP directives in an html file. Your web server does not know to parse html files as php files unless you tell it to do so. > -Original Message- > From: Alexander Ross [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 9:50 AM > To: [EMAIL PROTECTED] >

RE: [PHP] Re: including a php file in an html doc

2002-08-12 Thread Brian V Bonini
nal Message- > From: Alexander Ross [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 10:13 AM > To: 'Brian V Bonini'; [EMAIL PROTECTED] > Subject: RE: [PHP] Re: including a php file in an html doc > > > So is there any way to accomplish what I want to us

RE: [PHP] exec / mkdir question

2002-08-12 Thread Brian V Bonini
Just curious, any reason you don't use the mkdir function/ mkdir ("/path/to/my/dir", 0700); -Brian > -Original Message- > From: Simon Ritchie [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 2:50 PM > To: [EMAIL PROTECTED] > Subject: RE: [PHP] exec / mkdir question > > > > > i

RE: [PHP] Fixing timezone issues

2002-08-13 Thread Brian V Bonini
You should really fix it at the core of the issue but... putenv("TZ=EST5EDT"); will work.. -Brian > -Original Message- > From: H. Wade Minter [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 13, 2002 2:44 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Fixing timezone issues > > > At som

RE: [PHP] Header and Target

2002-08-15 Thread Brian V Bonini
No, but instead you could do something like: header ("Location: frame.php?url=content.php"); Then in frame.php: Make sense? -Brian * > -Original Message- > From: Christian Ista [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 15, 2002 7:32 AM > To: [

RE: [PHP] MySQL to csv

2002-08-15 Thread Brian V Bonini
Using SQL or PHP? > -Original Message- > From: Djurovski Dejan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 15, 2002 11:42 AM > To: [EMAIL PROTECTED] > Subject: [PHP] MySQL to csv > > > Hi > > Can someone show me how to export MySQL table to a csv file? > > Thanks! > > > > -

RE: [PHP] assoc array question

2002-08-15 Thread Brian V Bonini
Off teeh top of my novice head I think count() or sizeof() is what your looking for. > -Original Message- > From: Alexander Ross [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 15, 2002 5:23 PM > To: [EMAIL PROTECTED] > Subject: [PHP] assoc array question > > > I have this: (note that

RE: [PHP] Frames and PHP

2002-08-15 Thread Brian V Bonini
Are you saying $id is not passed some of your frames content but not others or it does nto get passed at all? > -Original Message- > From: Sascha Braun [mailto:[EMAIL PROTECTED]] > Sent: Thursday, August 15, 2002 4:34 PM > To: PHP Mailingliste > Subject: [PHP] Frames and PHP > > > I have

RE: [PHP] Re: progress bar for uploading files

2002-08-16 Thread Brian V Bonini
Bet this would be perfect for combining Flash and PHP. > -Original Message- > From: Philip Hallstrom [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 16, 2002 11:57 AM > To: electroteque > Cc: [EMAIL PROTECTED] > Subject: [PHP] Re: progress bar for uploading files > > > You're best bet w

RE: [PHP] A Doubt!

2002-08-19 Thread Brian V Bonini
So formal ;-) How about posting your sendmail.php file and also have a look at http://www.php.net/manual/en/ref.mail.php for more information about using the mail function with windows. > -Original Message- > From: Thiruvelraj Pokkishamani [mailto:[EMAIL PROTECTED]] > Sent: Monday, A

RE: [PHP] NS4.x / IE3.0 Browser Detection

2002-08-20 Thread Brian V Bonini
HTTP_USER_AGENT returns platform info as well doesn't it...?? > -Original Message- > From: Andre Dubuc [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 20, 2002 10:10 AM > To: [EMAIL PROTECTED] > Subject: [PHP] NS4.x / IE3.0 Browser Detection > > > I need to differentiate between dif

RE: [PHP] why is html code written like this?

2002-09-02 Thread Brian V Bonini
The entire point of is backwards compatibility. Read the spec http://www.w3.org/TR/xhtml1/ -B > -Original Message- > From: Victor [mailto:[EMAIL PROTECTED]] > Sent: Monday, September 02, 2002 7:35 AM > To: 'Adrian Murphy'; [EMAIL PROTECTED] > Subject: RE: [PHP] why is html code written

RE: [PHP] FORUM CODE

2002-09-03 Thread Brian V Bonini
My guess would be a regex replace function. The latest version of Phorum has this capability. You could grab the source form phorum.org and have a look. > -Original Message- > From: Tony Harrison [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 03, 2002 2:23 PM > To: [EMAIL PROTECTED

[PHP] Mail list/message board

2002-09-04 Thread Brian V Bonini
Anyone now of a a PHP mailing list program that has a forum-like interface as well? Somethign that functions similar to yahoo groups if your familiar with that? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] replacing \n with

2002-09-06 Thread Brian V Bonini
I'm sorry, I missed the first part of this thread so am only going by its subject line mostly... But, I assume you are all aware of the nl2br function and there's a special reason it does not apply here but I thought I'd mention it any way... Just in case... :) -B -- PHP General Mailing List (

RE: [PHP] help with making an xslt class

2002-09-11 Thread Brian V Bonini
Isn't this what the salbatron library is for? > -Original Message- > From: Geoff [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 11, 2002 2:52 PM > To: php list > Subject: [PHP] help with making an xslt class > > > I am trying to make a class to process xslt transformations. >

[PHP] xml declaration

2002-09-13 Thread Brian V Bonini
Is this the appropriate way to handle this? ' . "\n"; ?> What's everyone else do? I'm not missing something here am I?? :) -B -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] xml declaration

2002-09-13 Thread Brian V Bonini
When I do that PHP complains about the -Original Message- > From: Jay Blanchard [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 13, 2002 9:28 AM > To: 'Brian V Bonini'; 'PHP Lists' > Subject: RE: [PHP] xml declaration > > > [snip] >

RE: [PHP] a href...

2002-09-13 Thread Brian V Bonini
Use $amp; if you need to validate xhtml > -Original Message- > From: Will Steffen [mailto:[EMAIL PROTECTED]] > Sent: Friday, September 13, 2002 9:00 AM > To: [EMAIL PROTECTED] > Subject: RE: [PHP] a href... > > > Use & > > a href="bug_detail_user.php?id=$id&reporter_id=$reporter_id

RE: [PHP] Trouble wirh < in a string

2002-10-11 Thread Brian V Bonini
Try $myvar = 'hell From: Christian Ista [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 11, 2002 12:56 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Trouble wirh < in a string > > > Hello, > > I have a small problem a

RE: [PHP] Best Forum System

2002-10-13 Thread Brian V Bonini
Phorum seems to be real popular, see http://phorum.org > -Original Message- > From: Stephen [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 11, 2002 5:37 PM > To: PHP List > Subject: [PHP] Best Forum System > > > Hello, > > I know there will be a load of different responses but I'm

RE: [PHP] Who can tell me where I can get the cracked Zend Encoder3.0 ?

2002-10-31 Thread Brian V Bonini
My, my. We have a rocket scientist amongst us > -Original Message- > From: jianking [mailto:liaus@;10mail.net] > Sent: Thursday, October 31, 2002 10:00 AM > To: PHP Mail List > Subject: [PHP] Who can tell me where I can get the cracked Zend > Encoder3.0 ? > > > Who can tell me where

[PHP] Change Password

2002-06-13 Thread Brian V Bonini
Anyone know of a script that will allow a user to change their system/email password form the web on a UNIX system. wither PHP or Perl based? -B -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] getdate

2002-07-10 Thread Brian V Bonini
Any idea why this is off by 4 hours? Server time zone is set correctly, %date Wed Jul 10 14:26:18 EDT 2002 but the script below returns the time as being 4 hours later then that. 12) { $hours=$hours-12; $ampm="PM"; } elseif ($hours == 12) { $ampm="PM"; } if ( $mi

[PHP] getdate

2002-07-10 Thread Brian V Bonini
Any idea why this is off by 4 hours? Server time zone is set correctly, %date Wed Jul 10 14:26:18 EDT 2002 but the script below returns the time as being 4 hours later then that. 12) { $hours=$hours-12; $ampm="PM"; } elseif ($hours == 12) { $ampm="PM"; } if ( $mi

RE: [PHP] getdate

2002-07-10 Thread Brian V Bonini
[EMAIL PROTECTED]] > Sent: Wednesday, July 10, 2002 6:24 PM > To: Brian V Bonini > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] getdate > > > Works fine here. Are you actually in EDT? > > On Wed, 10 Jul 2002, Brian V Bonini wrote: > > > Any idea why this is off b

RE: [PHP] getdate

2002-07-11 Thread Brian V Bonini
Yes, that did the trick... Thanks!!! > -Original Message- > From: Miguel Cruz [mailto:[EMAIL PROTECTED]] > Sent: Thursday, July 11, 2002 6:20 PM > To: Brian V Bonini > Cc: [EMAIL PROTECTED] > Subject: RE: [PHP] getdate > > > The 'date' command-

RE: [PHP] is php.net down ?

2002-07-22 Thread Brian V Bonini
I can get in. Try a mirror if you having trouble. > -Original Message- > From: Jay Blanchard [mailto:[EMAIL PROTECTED]] > Sent: Monday, July 22, 2002 11:56 AM > To: 'R'twick Niceorgaw'; [EMAIL PROTECTED] > Subject: RE: [PHP] is php.net down ? > > > [snip] > any one else able to get into

Re: [PHP] pdf2txt or rtf

2003-09-11 Thread Brian V Bonini
On Thu, 2003-09-11 at 08:37, Peter Rinab wrote: > I am looking for a php class which is able to read a pdf file and dump the > content in txt or rtf format file. > > Any solutions? There is a *NIX program for this, 'pdftotext' which you could execute from PHP. Would that suffice? -- PHP General

RE: [PHP] Accounting package

2003-10-27 Thread Brian V Bonini
On Mon, 2003-10-27 at 09:19, Dan Joseph wrote: > Hi, > > > I have a need for a very simple financial accounting package > > which is webbased. > > Although its not written in PHP, www.sql-ledger.org is a nice one. > Ditto that... -- PHP General Mailing List (http://www.php.net/) To uns

[PHP] function question

2003-10-29 Thread Brian V Bonini
function splitPageResults($query, $max_rows, $count_key = '*', $page_holder = 'page') { Am I wrong in assuming that $count_key is being explicitly set to '*' in this instance? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] \n and

2003-11-11 Thread Brian V Bonini
On Mon, 2003-11-10 at 20:21, Eugene Lee wrote: > On Mon, Nov 10, 2003 at 04:05:07PM -0800, Chris Shiflett wrote: > : > : --- Eugene Lee <[EMAIL PROTECTED]> wrote: > : > > : > Warning: nl2br() is not safe because it emits "" tags which do > : > not always work on all browsers (especially browsers n

[PHP] Need OSC guru for some overflow...

2003-11-11 Thread Brian V Bonini
I've got some overflow work that requires some modifications to the functionality of OSC. Would prefer to work with someone who's already VERY VERY familiar with OSC, don't want to pay for learning time. Please contact me @ [EMAIL PROTECTED]com (remove '' obviously) if interested with 'OSC Guru' in

Re: [PHP] \n and

2003-11-11 Thread Brian V Bonini
On Tue, 2003-11-11 at 14:51, Marek Kilimajer wrote: > Brian V Bonini wrote: > > So just change it > > > > $string = nl2br($content->page_content); > > $string = eregi_replace("", "", $string); > > > > Why not directly > str_r

[PHP] Need OSC guru for some overflow...

2003-11-12 Thread Brian V Bonini
I've got some overflow work that requires some modifications to the functionality of OSC. Would prefer to work with someone who's already VERY VERY familiar with OSC. Please contact me @ [EMAIL PROTECTED]com if interested. Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP] Microsoft .NET arguement

2003-11-17 Thread Brian V Bonini
On Mon, 2003-11-17 at 11:27, Mike R wrote: > Actually, their claim is that Microsoft environments are secure - you just > need the proper firewall (that, basically, the problems with Windows boxes > has to do with the firewall, not the OS). > > That one I laughed at. > See how deep seeded the br

[PHP] Stumped

2003-11-30 Thread Brian V Bonini
Warning: Invalid argument supplied for foreach() in /usr/local/www/vhosts/pa.eastcoastbicycles.com/htdocs/mainfile.php on line 42 Warning: Invalid argument supplied for foreach() in /usr/local/www/vhosts/pa.eastcoastbicycles.com/htdocs/mainfile.php on line 57 42: foreach ($_GET as $secvalue) { 57

[PHP] config/compile problems

2003-11-30 Thread Brian V Bonini
'./configure' '--with-apxs=/usr/local/www/bin/apxs' '--with-config-file-path=/usr/local/www/etc' '--enable-versioning' '--with-system-regex' '--disable-debug' '--enable-track-vars' '--with-gd=/usr/local' '--with-freetype-dir=/usr/local' '--with-jpeg-dir=/usr/local' '--with-png-dir=/usr/local' '--wi

[PHP] Stumped

2003-11-30 Thread Brian V Bonini
Warning: Invalid argument supplied for foreach() in /usr/local/www/vhosts/pa.eastcoastbicycles.com/htdocs/mainfile.php on line 42 Warning: Invalid argument supplied for foreach() in /usr/local/www/vhosts/pa.eastcoastbicycles.com/htdocs/mainfile.php on line 57 42: foreach ($_GET as $secvalue) { 57

Re: [PHP] Stumped

2003-11-30 Thread Brian V Bonini
On Sun, 2003-11-30 at 19:21, Robert Cummings wrote: > On Sun, 2003-11-30 at 18:45, Brian V Bonini wrote: > > Warning: Invalid argument supplied for foreach() in > > /usr/local/www/vhosts/pa.eastcoastbicycles.com/htdocs/mainfile.php on > > line 42 > > > > Warni

Re: [PHP] Apache Installation Query

2003-12-06 Thread Brian V Bonini
On Sat, 2003-12-06 at 10:56, Shaun wrote: > Hi, > > I have just installed Apache on my local machine. However, when browsing a > directory I get the listing of it's contents rather than it defaulting to > the index.php file, is there a way to make this happen? > > Thanks for your help move to yo

Re: [PHP] Apache Installation Query

2003-12-06 Thread Brian V Bonini
On Sat, 2003-12-06 at 12:01, Shaun wrote: > "Brian V Bonini" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > On Sat, 2003-12-06 at 10:56, Shaun wrote: > > > Hi, > > > > > > I have just installed Apache on my local machin

Re: [PHP] PHP IDE?

2003-12-13 Thread Brian V Bonini
On Sat, 2003-12-13 at 12:06, Jough Jeaux wrote: > Was wondering what everyone's favortie IDE is for > coding in PHP. I've got a big PHP project in the > works. I'll be doing alot with it and am looking for > ways to boost my productivity. Quanta Plus: http://quanta.sourceforge.net Bluefish is a

[PHP] compile problems

2003-12-20 Thread Brian V Bonini
Not a clue what's wrong, anyone? functions.lo Zend/zend_sprintf.lo Zend/zend_ini.lo Zend/zend_qsort.lo Zend/zend_ multibyte.lo Zend/zend_execute.lo sapi/apache/sapi_apache.lo sapi/apache/mod_php 4.lo sapi/apache/php_apache.lo main/internal_functions.lo -lcrypt -lc-client -lc rypt -lmysqlclient -lc

[PHP] missing java.so

2003-12-31 Thread Brian V Bonini
Compiling PHP (CLI) with java on mdk9.1 and java.so is simply not there. What am I missing? PHP Warning: Unknown(): Unable to load dynamic library '/usr/lib/php/extensions/java.so' - /usr/lib/php/extensions/java.so: cannot open shared object file: No such file or directory in Unknown on line 0 [

[PHP] will not build shared library

2003-12-31 Thread Brian V Bonini
Any ideas why this would not build a shared library? [EMAIL PROTECTED] no-debug-non-zts-20020429]# pwd /usr/lib/extensions/no-debug-non-zts-20020429 [EMAIL PROTECTED] no-debug-non-zts-20020429]# ls -l total 96 -rwxr-xr-x1 root root93000 Dec 31 20:03 libjava.a* [EMAIL PROTECTED] no-

  1   2   3   4   >