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

[PHP] CR in MySQL?

2003-05-31 Thread Brian Dunning
How do you put a carriage return in a MySQL database and have it display as a line break on the web page? - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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 unsubscribe,

RE: [PHP] sound

2003-05-30 Thread Brian S. Drexler
Negative. Sounds are client side, PHP is server side. -Original Message- From: Bobby [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 3:45 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: [PHP] sound I know that...i'm just curious if somebody knows of a bit of php code

[PHP] Can't change a cookie

2003-05-30 Thread Brian Dunning
Help, I'm trying to change a cookie to whatever is submitted as a URL parameter called 'aid.' But once it's set the first time, I can't get it to overwrite it next time the 'aid' parameter is received. How do I make this work? Here is my code: ?php if ($aid != ) { setcookie(aid, $aid, time() +

[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? table id=xxx tr td table tr tdcontent1/td /tr /table /td /tr tr tdcontent2/td /tr /table If I wanted to grab all that from within a document I know I can start at table id= because

[PHP] replacing register_shutdown_function

2003-05-29 Thread Brian Moon
. myscript.php then forks. Unfortunately, exec() waits for the damn forked process to finish before he returns. Am I just not seeing something in PHP pcntl support here or am I on a wild goose chase? Thanks, Brian Moon dealnews.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] Installation help

2003-05-27 Thread Brian Dunning
Hi, I am a lamer a newbie, and ran the PHP and MySQL installers on my XP box, but can't connect to any database and don't see any new processes running. Is there someplace I can find documentation for this that is optimized for the newbie lamer? Thanks, - Brian -- PHP General Mailing List

[PHP] Phorum 3.4.2 Released - SECURITY NOTICE

2003-04-02 Thread Brian Moon
would have released something when I fixed that a while back. Brian Moon Phorum Dev Team -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] imap_open and 503 Error

2003-03-28 Thread Brian Mitchell
Anyone ever encounter a 503 server error when trying to open a stream to a mailbox using imap_open? If so, anyway to fix it? Thanks, Brian

[PHP] imap_open Error

2003-03-25 Thread Brian Mitchell
and verified that the imap functions are available as part of PHP. I can't figure out why this is happening. Any help would be greatly appreciated. Thanks, Brian

[PHP] Re: php script execution by linux automated task

2003-03-21 Thread Brian McGarvie
look up cron Nenad Djordjevic [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, I have some web application which is on some rented server. I have not root privilege just FTP access to application web folder. OS is Linux, web server Apache/1.3.27 and PHP version is

[PHP] PHP as Shell script...

2003-02-20 Thread Brian McGarvie
I am having trouble using php as a script. #!/usr/local/bin/php ?php ... stuff ... ? using the above form creates the following cron error: /bin/sh: /usr/local/apache/sites/domain.com/tasks/autoreport/test.php: bad interpreter: No such file or directory Any ideas? Thanks in advance...

[PHP] Counter has gremlins

2003-02-17 Thread Brian V Bonini
I have this basic counter: ?php $counterFile = ./counter.txt; function displayCounter($counterFile) { global $counted; $fp = fopen($counterFile, 'rw'); $num= fgets($fp,7); if (!$counted) { $num+= 1;

[PHP] upgrading from 4.1.2 to 4.3.0 - can anyone point me to a list ofMUST DO'S

2003-02-13 Thread Brian Tully
compatible with whatever PHP's new changes are? I've heard bits and pieces - which may as well be rumours - so I'd like to be able to find something in writing from the php.net site if possible. so far no luck. thanks, brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe

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

2003-02-08 Thread Brian V Bonini
) { $bgcolor = ($i++ 1) ? '#c0c0c0' : '#ff'; echo tr bgcolor=\$bgcolor\tdbla-bla/td/tr; } -Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[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

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)); 30:

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

[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

[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 ?php if (!$id) { include pagetop.inc.php; } if ($id == 1) { $title = xxx; include pagetop.inc.php; ? pStuff/p ?php } ? './configure' '--with-apxs=/usr/local/www/bin/apxs'

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 compiled, this PHP package runs without

Re: [PHP] Is my syntax wrong?

2003-02-05 Thread Brian Dunning
On Tuesday, February 4, 2003, at 05:03 PM, John W. Holmes wrote: I think we are almost there. This code is not producing an error, but it is also not incrementing the database. The value stays at zero. Any idea what could be wrong? $inc_current_ad = WrapMySQLDatabaseResults(macasap, update ads

[PHP] Include today's date in a SQL statement?

2003-02-05 Thread Brian Dunning
What would the SQL be to find a record where: start_date today = end_date Thanks, - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[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 just try something like this... ?php

[PHP] Is my syntax wrong?

2003-02-04 Thread Brian Dunning
in the ads table. The current_ad action works fine and correctly retrieves the right record. I suspect I have a problem with my quotes? - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is my syntax wrong?

2003-02-04 Thread Brian Dunning
=.($current_ad-Value(rotate)+1), block=0,inc_current_ad); Other queries of the same db on the page are working, so it's probably not a configuration/connectivity issue. - Brian -- 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) for

[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

[PHP] Need to check whether a param exists!

2003-02-03 Thread Brian Dunning
?page=hello ?php if (is_object($_REQUEST['page'])) $pagename = $_REQUEST['page']; else $pagename = home; ? I also tried is_null, tried if($_REQUEST) by itself, also tried all of these with $_GET, $_POST, $_GLOBAL, but they all give me Undefined Index error on that If line. - Brian -- PHP

Re: [PHP] Need to check whether a param exists!

2003-02-03 Thread Brian Dunning
Wow, an embarrassment of riches. Thanks to all of you who replied so quickly. - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[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

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

[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

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 a million

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 million

[PHP] WorldPay examples...

2003-01-24 Thread Brian McGarvie
I'm looking for an example of making payments via worldpay... --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.438 / Virus Database: 246 - Release Date: 07/01/03 -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] value not displayed

2003-01-24 Thread Brian Burg
By default PHP 4.3.0 has register_globals = off. As others have mentioned, you need to change register_globals to on in order to use HTTP GET variables as global variables. Otherwise, you need to use $_GET['varname'] in the case you can't edit the configuration file. Regards, Brian Burg

[PHP] Re: How do you update multiple rows at the same time?

2003-01-24 Thread Brian Burg
the plain number of categories, use COUNT(*). Example: SELECT COUNT(DISTINCT table.categoryfield) FROM `table`; which returns a single element, the number of unique categories. I hope this may help you! Regards, Brian Burg Hudsonville Web Design Team http://www.hudsonville.k12.mi.us

[PHP] Help!!!

2003-01-23 Thread Brian McGarvie
I have just got use of a new dedicated webserver... Now the 1st time a piece of code is ran it doesnt work but then the 2nd it does... i.e. index.php // stuff... $visitDBID = referrerVisit($rid,$rgid,$visitIP,$visitFromURL); // stuff... //end index.php function

[PHP] Re: Help!!!

2003-01-23 Thread Brian McGarvie
(),'Resource id #4') inserted not Sorry, an error has occured. It has been recorded and reported to the Website Administrator. Error: SQL: Error Code: 1065: Query was empty Brian McGarvie [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have

RE: [PHP] Re: fscanf

2003-01-22 Thread Brian T. Allen
a space after the comma you can do: $string = ereg_replace(, , ,, $string); Instead of the other ereg_replace above. Brian -Original Message- From: Kris [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 6:29 PM To: Brian T. Allen; 'Jason k Larson' Cc: [EMAIL PROTECTED

RE: [PHP] Returning a value from a recursive function

2003-01-22 Thread Brian T. Allen
, and OneHundred($count) from within the function). For instance: ?php function OneHundred(){ global $count; if($count 100){ $count++; OneHundred(); } return true; } OneHundred(); echo $count; ? Hope that helps, Brian -Original Message- From: Andy Crain

[PHP] session_register() Killing MySQL Connection

2003-01-21 Thread Brian T. Allen
() is a temporary solution: if(!$REFER_SITE){ $REFER_SITE = ; } Thanks all! Brian Allen [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] numbers

2003-01-21 Thread Brian T. Allen
Which, for the list, can be number_format(), among other things. Brian -Original Message- From: cj [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 5:18 PM To: Php-List (E-mail) Subject: RE: [PHP] numbers I just found the answer -Original Message- From

RE: [PHP] Re: fscanf

2003-01-21 Thread Brian T. Allen
, but it is one way. Brian -Original Message- From: Kris [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 5:02 PM To: Jason k Larson Cc: [EMAIL PROTECTED] Subject: Re: [PHP] Re: fscanf I've tried $array = fscanf ($fp, %s, %s, %s\n); earlier. It picks up array[0

[PHP] Unsupported operand types

2003-01-18 Thread Brian T. Allen
: /community/newsletter.html/2001-03-01 Date: Array - How can $date be an array, when it gets assigned right above where it gets called? What am I missing in this new version of PHP that is making my scripts seemingly incompatible? Thanks, Brian Allen -- PHP General Mailing List (http

[PHP] PDF

2003-01-17 Thread Brian McGarvie
I'm looking to find out if PHP has the ability to do this... OK I'm looking for a solution that could do the following. We require to generate PDF files that can then be emailed or printed posted to clients. I can create PDF Files from scratch using PDFLib. What we will require to do though

[PHP] Re: Php's future with Asp .NET?

2003-01-16 Thread Brian McGarvie
The 'problem' with ASP is that it really requires a Windows platform... and while Unix is still primarily the OS of choice for web-servers then ASP PHP will 'co-exist' there will always be a PHP and ASP camp... naturally any broad-minded developer will keep up with both technologies as this will

[PHP] Random Row...

2003-01-16 Thread Brian McGarvie
$sql = select count(*) as theCount from myTable ; ... $row_id = rand(1, $myrow[theCount]); ... $sql_randow_row select * from myTable where id = $row_id ; I assume I'm right with the method above to select a random row? or any other way? --- Outgoing mail is certified

[PHP] MIME email...

2003-01-16 Thread Brian McGarvie
All, I have a problem sending Multipart - MIME (plaintext + html) email $bodyPlaintext = (PLAINTEXT); $bodyHTML = (HTML CODE); $headers = ; $headers .= From: [EMAIL PROTECTED]\r\n; $headers .= Reply-To: [EMAIL PROTECTED]\r\n; $headers .= X-Mailer: PHP . phpversion(); $subject =

RE: [PHP] Re: get the $email string

2003-01-16 Thread Brian T. Allen
, cookie, and session variables). Thanks, Brian Allen -Original Message- From: Rafael Rodrigo - NSI [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 16, 2003 12:03 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: get the $email string I don't know how do you get this answer

[PHP] restore_error_handler() to default error handler

2003-01-14 Thread Brian T. Allen
with restore_error_handler(); Thanks, Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Phorum 3.4 Released!

2003-01-12 Thread Brian Moon
their sites design. You can download it now at http://phorum.org/download.php Thanks, Brian Moon Phorum Dev Team -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Auto Include a Function

2003-01-09 Thread Brian T. Allen
already. Thanks, Brian Allen [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Fw: [PHP] unlink ($files);

2003-01-09 Thread Brian T. Allen
. Brian Allen [EMAIL PROTECTED] Paul Nicholson [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey, You can't delete the files all at onceyou have to delete them one by one or use this function that will remove full directories

[PHP] Re: email a web page

2003-01-07 Thread Brian McGarvie
Dc [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi all, I have a newsletter ready to email to my database of customers. The entire newsletter incl graphics , layout etc is enclosed within a form which posts to a second page which s supposed to email the

[PHP] Re: Forwarding POST info from a PHP script

2003-01-07 Thread Brian McGarvie
Could be an issue on the webserver if PHP has register_globals set to off... David Barrett [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I want to be able to retrieve POST variable in one PHP script (which is straight-forward) and then send these from the

Re: [PHP] Far out!!!! More IIS problems.....

2003-01-07 Thread Brian McGarvie
php (.exe or .dll) will look for a php.ini in both, c:\(windows_dir) and c:\php\ (I am not sure what location takes priority - I'd assume c:\(windows_dir) Scott Fletcher [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I only have one php.ini on the machine and the

[PHP] Re: Development tools

2003-01-07 Thread Brian McGarvie
And this has what to do with PHP? --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.431 / Virus Database: 242 - Release Date: 17/12/02 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: apache + php + MS active directory

2003-01-07 Thread Brian McGarvie
Yip... Investigate... LDAP Ezra Nugroho [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Now, this is a rather unlikely configuration, but ... I am working on a linux based web work based on apache and php, but the authentication system on site is based on MS

[PHP] Re: Development tools

2003-01-07 Thread Brian McGarvie
Yes you can use java classes... from php. Yes you can write compile C++ to a dll and use it. For Java: Notepad + the JDK :) DLL's (C++) Notepad + dgcpp :) IF you want a GUI - Java = JBuilder is best I've used. C++ - typically VC++ :\ There are some free alternatives but the above are the 2

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] Just need a link ;)

2002-12-27 Thread Brian J. Celenza
Hello! I'm looking for a link that contains a list/description of all the built in $PHP_ variables (the ones that show browser type, etc.). Can't seem to locate them, if the page exists. Thanks! -- --- Brian J. Celenza [EMAIL PROTECTED

Re: [PHP] forum?

2002-12-24 Thread Brian V Bonini
On Tue, 2002-12-24 at 09:51, Fatih stnda 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

[PHP] Re: Creating reports in database systems implemented over Web interface

2002-12-20 Thread Brian McGarvie
Make use of fpdf - a good dpf creation lib.. type it into google for the site. Enediel [EMAIL PROTECTED] wrote in message 076a01c2a51c$9c47be50$8a24a8c0@nsoft">news:076a01c2a51c$9c47be50$8a24a8c0@nsoft... Hi everybody: Over linux, I'm using PostgreSQL , Apache server, and PHP pages to create a

[PHP] ping...

2002-12-13 Thread Brian McGarvie
I can exec ping OK... but I need a way to ping and basically give me a OK or Not OK... any ideas? --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.427 / Virus Database: 240 - Release Date: 06/12/02 -- PHP General Mailing List

[PHP] mysql_connect problem under RedHat 8.0 ?

2002-12-08 Thread Brian J. Celenza
= mysql_connect(localhos , username , password) or die(Couldn't Connect.); ? I am currently running Apache with Mysql and PHP version 4 on Redhat 8. Any suggestions? Thank you. -- --- Brian J. Celenza [EMAIL PROTECTED] ICQ: 100942424 AIM

Re: [PHP] mysql_connect problem under RedHat 8.0 ?

2002-12-08 Thread Brian J. Celenza
] Sent: Sunday, December 08, 2002 11:53 AM Subject: Re: [PHP] mysql_connect problem under RedHat 8.0 ? On Monday 09 December 2002 00:29, Brian J. Celenza wrote: Hello! When trying to connect to a mysql database under my linux system, I get the following error: How did you install your

[PHP] Re: mysql_connect problem under RedHat 8.0 ?

2002-12-08 Thread Brian J. Celenza
Found the problem... Somehow my version of mysql had become uninstalled, and I have no idea why that is. Thanks for all the help :) Brian J. Celenza [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello! When trying to connect to a mysql database

[PHP] POST data

2002-12-03 Thread Brian Duke
Can someone tell me how I can access data from a POST? I don't mean the variables because the data I'm getting doesn't have any. I have a client that is doing a simple HTTP Post to a server and appending xml data right after the header. I need access to the xml blob. Thanks, Brian - Brian

[PHP] Dynamically Adding methods to an object

2002-12-01 Thread Brian Takita
$lambda() Is there a way I can know the arguments of a defined method without calling the method? Thank you, Brian Takita -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How do i provide Download facility ??

2002-11-27 Thread Brian McGarvie
Perhaps he wants to track downloads of files and obscure the physical locations... Justin French [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, I am a newbie in this PHP world. I was just looking around for information on Download of files using PHP.

Re: [PHP] Is it possible to do this in PHP ? If it is then, how ?

2002-11-27 Thread Brian McGarvie
I was wondering if this is possible to in PHP ... I am developing an application for a pizza place, where touch typing interface is much faster than using the mouse, so I was wondering if I can develop an interface with a calculator style keypad, and the codes entered (using something like

Re: [PHP] Linux Question

2002-11-26 Thread Brian V Bonini
. Peace, -Brian *** -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: IIS and PHP with $HTTP_SERVER_VARS

2002-11-26 Thread Brian McGarvie
it's to do with probably folder permissions, the folder all your web files are should have IUSR_machinename added to the folder with full rights, the login box should then not appear... Shaun Garriock [EMAIL PROTECTED] wrote in message

Re: [PHP] Linux Question

2002-11-25 Thread Brian V Bonini
a relative scheme like 12px it will render more consistently BTW: I bet you'd find the same issues if you looked at your pages on a MAC as well... -Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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 relative scheme like 12px

[PHP] Re: Problem on OpenDir()

2002-11-21 Thread Brian McGarvie
I don't do much file-stuff with php windows, but i think the path nees to use // not \\? Jack [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Dear all I was trying to check if a directory exist in a specific folder, but i got this error message as below : Warning:

[PHP] Re: character ' in switch

2002-11-21 Thread Brian McGarvie
try: case what's new: Martin Hudec [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello all, I would like to know how can I put ' character to case in switch... Situation: from flash i am getting url: index.php?action=what's new i need to pass this

[PHP] Re: isapi mod on iis

2002-11-20 Thread Brian McGarvie
The Internet Guest user needs to have permissions to the foler the script's are located. This should remove the auth request. Chris Edwards [EMAIL PROTECTED] wrote in message 04f901c28ffa$a75867e0$4300a8c0@development">news:04f901c28ffa$a75867e0$4300a8c0@development... is anyone running the

[PHP] Re: ACT Based Contact Management System

2002-11-19 Thread Brian McGarvie
mibbie give us a url to look at ACT? Or atleast a quick out-line of what it does? Craig [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Does anyone know of any sites that offer a web based contact management system that works in a similar way to ACT? I want to

[PHP] Phasing HTML

2002-11-18 Thread Brian Lee
to display on my site. Thanks for any help -Brian _ Protect your PC - get McAfee.com VirusScan Online http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Re: connecting to a remote host through mysql.exe

2002-11-14 Thread Brian McGarvie
mysql -u username -pPASSWORD -h www.domain.com Mr. Bungl3 [EMAIL PROTECTED] wrote in message news:20021114111727.44334.qmail;pb1.pair.com... Hi... How can i connect to a remote host database through mysql.exe? Thank you -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Re: Request entity too large (already seen the FAQ)

2002-11-09 Thread Brian Fahrlander
On Thu, 7 Nov 2002 11:31:52 -0600, [EMAIL PROTECTED] (Brian Fahrlander) wrote: OK, thanks for no help whatsoever. But I'm not bitter; I'm here to report what I found so that the next guy with this problem isn't stuck: The PHP docs say to change variables in /etc/php.ini (like the whole

[PHP] Request entity too large (already seen the FAQ)

2002-11-07 Thread Brian Fahrlander
after changes) Brian Fahrländer GNU/Linux Zealot, Conservative, and Technomad Evansville, INMy Voyage: http://www.CounterMoon.com ICQ 5119262

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 I can

[PHP] writing pdf files to physical files...

2002-10-25 Thread Brian McGarvie
I presently generate pdf files as required... I use FPDF for writing PDF... I require to save these to file... is it a simple case of: where the script: generate_stats_view_table_pdf.php generates the PDF... ? $fcontents= file

[PHP] Re: writing pdf files to physical files...

2002-10-25 Thread Brian McGarvie
yes it does... /me answered myself again ;) Brian McGarvie [EMAIL PROTECTED] wrote in message news:20021025145239.65314.qmail;pb1.pair.com... I presently generate pdf files as required... I use FPDF for writing PDF... I require to save these to file... is it a simple case of: where

[PHP] Re: Script optimisation

2002-10-16 Thread Brian McGarvie
will be quicker that some text $aVariable more text; to process... As I said at the start, it very much depends on what is required for a particular script... Also, it is better to choose a style and stick to it! And only break your own style when the need calls for it. HTH, Brian M McGarvie

[PHP] windows specific: printer_ functions...

2002-10-16 Thread Brian McGarvie
be to take a series name's ammount's and print the cheques... Thanks in advance... Brian M McGarvie ([EMAIL PROTECTED][EMAIL PROTECTED]) IT/Web Apps Specialist www.anypurposeloans.co.uk -- www.mcgarvie.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

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 after

RE: [PHP] Trouble wirh in a string

2002-10-11 Thread Brian V Bonini
Try $myvar = 'hell#60;o my friend'; or $myvar = htmlentities(hello my friend); -Brian -Original Message- 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

[PHP] Re: Execute...

2002-10-08 Thread Brian McGarvie
dunno if it's work, but, if you find out the client's OS, then you will know the path to calc.exe as it resideds in the windows dir of most windoze installs... so find OS, then u know path, then jist do a a/a... a href=**path determined by OS**\calc.exelaunch windows calculator/a Bsantos Php

[PHP] Re: Execute...

2002-10-08 Thread Brian McGarvie
it's messy but works... I would never do it this way... I suggest a javascript calculator approach... Brian McGarvie [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... dunno if it's work, but, if you find out the client's OS, then you will know

[PHP] Re: MORE Problems with PHP as CGI and Flash !!!!!!!!!!

2002-10-03 Thread Brian McGarvie
Yes... get him to download the latest plug-in, IE 5.0 to IE 5.5 even are weired with dynamic content even it it's a form built up from php... Neway... I suggest that he should upgrade the flash plug-in and/or IE. Rebekah Garner [EMAIL PROTECTED] wrote in message

[PHP] RE: [PHP-INST] VERY NEWBIE php_* mod_* --with- question

2002-10-02 Thread Brian . Duke
Well, I'm not the best qualified to answer this question but here goes my best shot (Guru's watch me here make sure I don't screw this up). Starting with Apache. Apache does not actually process your *.php files. There is another engine that takes care of that called Zend. There are a couple

[PHP] Re: php on apache on win2k

2002-09-27 Thread Brian McGarvie
on www.php.net you need to download the zip file for php, this will include the missing files... Vic [EMAIL PROTECTED] wrote in message 01c265e6$c3a2b920$a3a96518@jumpy">news:01c265e6$c3a2b920$a3a96518@jumpy... I used to have php 4.2.3 on iis on 200 and xp and it worked fine, but I

<    5   6   7   8   9   10   11   12   13   14   >