Re: [PHP] dynamic website screenshot/screen capture

2003-02-22 Thread Justin French
on 22/02/03 5:55 PM, olinux ([EMAIL PROTECTED]) wrote: Hi all - While I know that this is not possible with PHP alone, Does anyone know how to capture website screen shots using PHP. I have recieved many spam mails featuring a screen shot of our company website and I imagine that it would

[PHP] MSSQL Stored procedure return values

2003-02-22 Thread Leo Spalteholz
Hi, I'm doing a small project at work with php, ms sql server on w2k IIS5. All the data access is done through stored procedures. This seems to be working fine, the record sets are returned and the stored procedures execute without error however I can't get any return values from them. For

Re: [PHP] PHP running on Win 2000 and IIS

2003-02-22 Thread Leo Spalteholz
For help with getting MSSQL to work with php, check the comments for the mssql_execute and mssql_bind functions in the online php manual. You need some extra dlls. Leo On February 21, 2003 09:43 pm, John W. Holmes wrote: I wish to run PHP on a Win 2000 server, MS SQL and IIS. Can someone

[PHP] Re: Getting a Multiple Select Form Field's Value

2003-02-22 Thread Markas
Just replace the name of your select element to select[] , and you'll get all the selected values as a php array under the name of $_GET['select']. Mike Walth [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello: I'm trying to get the value from the following form field. select

Re: [PHP] Array instead of Switch

2003-02-22 Thread Markas
David Otton [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On 22 Feb 2003 03:28:22 -, you wrote: Let's say I need to take one of 20 actions depending on a form selection. I could use a switch statement with 20 cases, but I could also do something like: // Pretend this comes

Re: [PHP] preg_match question: locating unmatched HTML tags

2003-02-22 Thread Ernest E Vogelsinger
At 03:35 22.02.2003, Andy Crain said: [snip] My apologies in advance if this too basic or there's a solution easily found out there, but after lots of searching, I'm still lost. I'm trying to build a regexp that would parse user-supplied text and identify

[PHP] Re: cookie problem..

2003-02-22 Thread Lord Loh.
Cookies are loaded the next time the page is loaded. So you may have to refresh the page to see the cookie... or Submit to a html page which will redirect to the page which shows cookie value... Hope this helps...This should work... Lord Loh -- PHP General Mailing List

[PHP] is_writable for a dir?

2003-02-22 Thread David T-G
Hi, all -- How can I tell if a directory is writable? It seems that is_writable only works on file, and the mode I get out of stat() is [in this case, anyway] '16895' for a 0777 dir. TIA HAND :-D -- David T-G * There is too much animal courage in (play) [EMAIL

[PHP] Problem with Arrays?

2003-02-22 Thread Patrick Teague
I ran into something interesting the only thing I can figure out is that functions won't use any variables other than globals, those past to the function, or those created inside the function? here's what I had that didn't print anything other than 3 blank lines for this section of code -

Re: [PHP] Problem with Arrays?

2003-02-22 Thread Ernest E Vogelsinger
At 13:46 22.02.2003, Patrick Teague said: [snip] here's what I had that didn't print anything other than 3 blank lines for this section of code - $byteSize[0] = bytes; $byteSize[1] = kb; $byteSize[2] = mb; function getMaxSize( $maxSize ) { echo

php-general Digest 22 Feb 2003 13:05:48 -0000 Issue 1898

2003-02-22 Thread php-general-digest-help
php-general Digest 22 Feb 2003 13:05:48 - Issue 1898 Topics (messages 136577 through 136619): ssi problem 136577 by: Hans Prins Re: ob_gzhandler problems under 4.3.0??? 136578 by: Gerard Samuel Re: including in shtml 136579 by: Tom Rogers 136581 by: Hans

Re: [PHP] Problem with Arrays?

2003-02-22 Thread Justin French
on 22/02/03 11:46 PM, Patrick Teague ([EMAIL PROTECTED]) wrote: I ran into something interesting the only thing I can figure out is that functions won't use any variables other than globals, those past to the function, or those created inside the function? exactly :) you bring the array or

[PHP] what's the matter?

2003-02-22 Thread X
index.php: form action=x.php method=postchoice your gender input type=radio name=gender value=male male input type=radio name=gender value=femalefemale input type=submit /form x.php: ?php if($gender=='') echo choice the gender; if($gender==male) echo you are male;

[PHP] forward to a html file

2003-02-22 Thread qt
Dear Sirs, I need forward a html file in my php. If I use include, it comes a part of .php result. In the navigation window shows that myscript.php But I want to show that destination.html. I can not find good procedure in the manual, can you help; how can I do? Best Regards -- PHP

Re: [PHP] forward to a html file

2003-02-22 Thread David Otton
On Sat, 22 Feb 2003 15:25:36 +0300, you wrote: I need forward a html file in my php. If I use include, it comes a part of .php result. In the navigation window shows that myscript.php But I want to show that destination.html. Not absolutely sure what you're asking for, but I think you want

Re: [PHP] what's the matter?

2003-02-22 Thread Chris Hayes
At 14:36 22-2-2003, you wrote: index.php: form action=x.php method=postchoice your gender input type=radio name=gender value=male male input type=radio name=gender value=femalefemale input type=submit /form x.php: ?php if($gender=='') echo choice the gender; if($gender==male) echo you are

[PHP] how fast is Vulcan Logic SRM and unix sockets

2003-02-22 Thread Tamas Arpad
Hi, The question is mainly for the developers of SRM, but I'm sure there are others who use it. I'm implementing a caching method where cached data is stored in hashes. Now it works with file storage, files' names are the keys and the values are stored in within the files. I'm considering

Re: [PHP] dynamic website screenshot/screen capture

2003-02-22 Thread olinux
right - I was thinking more along the lines that php would loop thru URL database and then trigger IE somehow (have to be on windows box but not production server) The macro idea sounds like the best bet. Thanks olinux --- Justin French [EMAIL PROTECTED] wrote: on 22/02/03 5:55 PM, olinux

Re: [PHP] PHP running on Win 2000 and IIS

2003-02-22 Thread Denis L. Menezes
Hello John. Thanks. Do you mean you run win 2000 + PHP + MySQL? For MySQL to run properly, will the standard binary downloaded from the website suffice or do I need to purchase some other version of MySQL? Also is there a good MySQL GUI for Windows machines? Thanks very much. Denis Thanks

Re: [PHP] what's the matter?

2003-02-22 Thread Rick Emery
?php extract($HTTP_POST_VARS); if($gender=='') echo choice the gender; if($gender==male) echo you are male; if($gender==female) echo you are female; ? - Original Message - From: X [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, February 22, 2003 7:36 AM Subject:

Re: [PHP] Re: including in shtml

2003-02-22 Thread Hans Prins
thank you |Tom :) That helped me out a lot Tom Rogers [EMAIL PROTECTED] schreef in bericht news:[EMAIL PROTECTED] Hi, Saturday, February 22, 2003, 12:29:36 PM, you wrote: HP Im trying to write a poll script that is easy to intergrate into other HP documents of a site and thought that since

Re: [PHP] what's the matter?

2003-02-22 Thread Ernest E Vogelsinger
At 15:03 22.02.2003, Chris Hayes said: [snip] Since PHP 4.1 form data are not automatically available as variables in the followup file. http://nl.php.net/release_4_1_0.php explains it all, for now it's enough to say - either turn register_globals on in

[PHP] Retrieving data via a proxy server

2003-02-22 Thread Siddharth Hegde
Hello, I am a bit new to the concept of a proxy server. Could someone tell me how to a) Connect to a Web Server and retrieve data from it b) Connect to an mail server and send an e-mail (via a proxy) I know how to do these tasks without a proxy server, but not behing one. Thanks - Sid --

RE: [PHP] dynamic website screenshot/screen capture

2003-02-22 Thread Siddharth Hegde
My company researched on the topic sometime back. We even did a test run (on our local machines where there are no user restrictions set). The machine running this will need IE 5.x or above and another software (um... forgot its name) that uses this IE engine to capture whatever IE see into an

Re: [PHP] is_writable for a dir?

2003-02-22 Thread Michael Sims
On Sat, 22 Feb 2003 07:23:20 -0500, you wrote: Hi, all -- How can I tell if a directory is writable? It seems that is_writable only works on file, and the mode I get out of stat() is [in this case, anyway] '16895' for a 0777 dir. The 16895 is in decimal. Use decoct() to convert it to octal

Re: [PHP] Serial communiction

2003-02-22 Thread Ian
O.K. Thanks, so it could be an active X control then ? Ernest E Vogelsinger [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] At 23:12 21.02.2003, Ian said: [snip] Is it possible to read information on the client serial port and return it to

[PHP] timer problem

2003-02-22 Thread Michael Gaab
hi. i want to automate some activities by date. on a certain date i want to do some specific processing. the application is web based using apache. i guess i would need some way of calling the program daily to see if today is the day. thread/daemon? any suggestions appreciated. mike --

RE: [PHP] PHP running on Win 2000 and IIS

2003-02-22 Thread John W. Holmes
Do you mean you run win 2000 + PHP + MySQL? Yes, with IIS as the web server. For MySQL to run properly, will the standard binary downloaded from the website suffice or do I need to purchase some other version of MySQL? Also is there a good MySQL GUI for Windows machines? The regular

RE: [PHP] timer problem

2003-02-22 Thread John W. Holmes
i want to automate some activities by date. on a certain date i want to do some specific processing. the application is web based using apache. i guess i would need some way of calling the program daily to see if today is the day. thread/daemon? any suggestions appreciated. Use cron on

Re: [PHP] Threading

2003-02-22 Thread Steve Vernon
Hiya Greg or anyone else! I realise that PHP does not have inherent thread support as yet. But is it possible to simulate threads? What I would like is for the user in a web site in a rare condition to cause a long script to be completed. Now as far as I can make out you can make it not

Re: [PHP] Threading

2003-02-22 Thread Joshua Moore-Oliva
You can use the curl libs to call an external script. Josh. On February 22, 2003 11:05 am, Steve Vernon wrote: Hiya Greg or anyone else! I realise that PHP does not have inherent thread support as yet. But is it possible to simulate threads? What I would like is for the user in a web

Re: [PHP] is_writable for a dir?

2003-02-22 Thread David T-G
Michael -- ...and then Michael Sims said... % % On Sat, 22 Feb 2003 07:23:20 -0500, you wrote: % % How can I tell if a directory is writable? It seems that is_writable % only works on file, and the mode I get out of stat() is [in this case, % anyway] '16895' for a 0777 dir. % % The 16895 is

[PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread CF High
Hey All. Got a perhaps easy question here: How can I create a global header and footer include to my site pages where I don't rely on absolute paths to include and image files? I'm having trouble including my header and footer .inc's within a multi-level directory structure -- the relative

Re: [PHP] is_writable for a dir?

2003-02-22 Thread Michael Sims
On Sat, 22 Feb 2003 11:49:09 -0500, you wrote: The real problem still remains, however; if it's not writable for all, then I need to see whether or not its writable, and preferably without checking the making of a temp file or digging into UID/GID and group membership and so on... I wouldn't

Re: [PHP] is_writable for a dir?

2003-02-22 Thread David T-G
Michael -- ...and then Michael Sims said... % % On Sat, 22 Feb 2003 11:49:09 -0500, you wrote: % % checking the making of a temp file or digging into UID/GID and group % membership and so on... % % I wouldn't know of any other way to do it except for the two that you Oh, well. Thanks for the

[PHP] Displaying images

2003-02-22 Thread Robert Stermer-Cox
Greetings, All, I'm a newbe to php and am trying to develop a routine to display artwork on my wife's site. I want to load from a flat file information about the artwork and image file names of the pieces. Then using the image file name, I want to display the image to the browser. I've figured

RE: [PHP] Displaying images

2003-02-22 Thread Matt Honeycutt
Robert, The image functions do indeed work, check the PHP docs for more info: http://www.php.net/manual/en/ref.image.php However, your server must have the GD libraries installed and PHP must be properly configured. The docs should be a good starting point if nothing else. ---Matt

RE: [PHP] Displaying images

2003-02-22 Thread Siddharth Hegde
I had the same problem. This is due to bad documentation I think. Just ImageCreateFromxxx to imagecreatefromxxx and DW MX will show it as a valid func AND more importantly, it will work. Let me know if this helps - Sid -Original Message- From: Robert Stermer-Cox [mailto:[EMAIL

[PHP] Help with Multiple Checkboxes

2003-02-22 Thread Shad Kaske
I am having some difficulty getting a list of check boxes to work properly. I have dug through the list archives, usenet, PHP Manuals, etc. and still I am unable to process multiple checkboxes from a form submission properly. The following is what I am running into. Form: input name=add

RE: [PHP] timer problem

2003-02-22 Thread Siddharth Hegde
Just a little curious. Is there any other way other than cron to do this. Is it possible to run a PHP script in an endless loop and when the clock strikes, run another script? - Sid -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Saturday, February 22, 2003

RE: [PHP] Help with Multiple Checkboxes

2003-02-22 Thread John W. Holmes
I am having some difficulty getting a list of check boxes to work properly. I have dug through the list archives, usenet, PHP Manuals, etc. and still I am unable to process multiple checkboxes from a form submission properly. The following is what I am running into. Form: input name=add

RE: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread John W. Holmes
How can I create a global header and footer include to my site pages where I don't rely on absolute paths to include and image files? I'm having trouble including my header and footer .inc's within a multi-level directory structure -- the relative paths to images (and to includes within

RE: [PHP] timer problem

2003-02-22 Thread John W. Holmes
Just a little curious. Is there any other way other than cron to do this. Is it possible to run a PHP script in an endless loop and when the clock strikes, run another script? Yeah, I think so, but it'd be worth the effort to just learn cron. You can use set_time_limit() to zero and run your

Re: [PHP] Displaying images

2003-02-22 Thread Sam A. Funk
Robert, I am fairly new to php as well, but I think I may be able to help. Unless you need to modify the images when you display them, you should be able to just use html to display them as thus: --Start Code Here /* These variables would be filled in by the information you have from your

Re: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Sebastian
What I did on my site is made a file called config.php, I then made a variable for all the files that need to be included, example, header, footer, leftnav, rightnav, etc.. My config file looks like this: ?php $header =/home/public_html/includes/header.php; $rightnav

Re: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Tom Rogers
Hi, Sunday, February 23, 2003, 6:14:32 AM, you wrote: CH Hey All. CH Got a perhaps easy question here: CH How can I create a global header and footer include to my site pages where I CH don't rely on absolute paths to include and image files? CH I'm having trouble including my header and

Re: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Noah
Hey John. Do you ever sleep? You've got a zillion posts in this news group.. To answer your question, it's not that I'm afraid of absolute paths, it's that I don't properly understand how to implement them. I understand why the path references are not working when I move beyond the

[PHP] sending results by email

2003-02-22 Thread Luis A
hi pals how can i make the server email me the results of this form __ form name=form1 method=post action= TEXTAREA NAME= ROWS=10 COLS=26 width =15 /TEXTAREA input type=submit name=Submit value=Enviar table width=100% border=0 height=27

[PHP] Constant Arrays Possible?

2003-02-22 Thread Daniel R. Hansen
Is it possible to define a constant that is an array of other predefined constants? If so, what would the syntax be? I'm trying something like the following (all items prefixed with an uppercase G are constants) without success: define(GaNavButtons, array( GnavSectionHome = array (

[PHP] fonts in dynamic images

2003-02-22 Thread julian haffegee
Hi all, I have been creating some dynamic images, with text. Some fonts seem to work fine, but some give the right number of characters, but each character is just a square box. What's causing this. I know the fonts are there (there is an entirely different error message when the fonts are not

Re: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread CF High
Hey Tom. Thanks for the idea; however, since we're not hosting the site on our own server, we don't have permissions for altering the php.ini file.. --Noah Tom Rogers [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, Sunday, February 23, 2003, 6:14:32 AM, you wrote: CH

Re: [PHP] sending results by email

2003-02-22 Thread Chris Hayes
my friend Google told me this is explained at http://www.thickbook.com/extra/php_email.phtml ! how can i make the server email me the results of this form __ form name=form1 method=post action= TEXTAREA NAME= ROWS=10 COLS=26 width =15 /TEXTAREA input type=submit name=Submit

Re: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread CF High
Hmm Sounds like a good idea, but we've got quite a few includes in our site, not to mention variable image paths (i.e. images/headers, images/groups, etc.) Seems like a lot of work to create maintain this config file + load the references on each page. Maybe I'm just lazy, but I

[PHP] to X

2003-02-22 Thread Luis A
?php extract($HTTP_POST_VARS); if($gender=='') echo choice the gender; if($gender==male) echo you are male; if($gender==female) echo you are female; ? that results an error Method Not Allowed The requested method POST is not allowed for the URL /1/x.php.

RE: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Daniel R. Hansen
I do the following and it seems to work OK: I put the following two lines at the top of each script: $defsPath = [my include path]defs/; include_once($defsPath.globals.php3); ...and later a call to a function I wrote ( printNavLinks() ) that outputs whatever I want in the

[PHP] Question about str_replace()

2003-02-22 Thread Al
I have a simple str_replace function that obviously has a syntax problem. The [p] in the $find array ignores the brackets. Every p in my text is replaced by a br. Just for the heck of it, I've tried instead of ', and preg_replace(), etc. $find= array(' ','WOD', '', chr(146), '[p]');

[PHP] bcpowmod() and BigIntegers

2003-02-22 Thread Robert Kofler
is there a possibility to implement bcpowmod() in a version prior than PHP5? bcpowmod() ist the only way to calculate a blind signature as described by David CHAUM 1982 - digicash (openssl does not work here). now I use the shell_exec command and an external java applet. (btw. java has a great

FW: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Daniel R. Hansen
As long as your headers/footers are static, you could define them as constants, include just the script that defines the constants, and do a print(SOME_FOOTER_NAME); where you want them to appear. -Original Message- From: CF High [mailto:[EMAIL PROTECTED] Sent: Saturday, February 22, 2003

[PHP] Question about replacing \r\n with br

2003-02-22 Thread Al
I can't find a way to replace \r\n codes with br in a text file. I'm reading a text file that was prepared with windows notepad The hex code shows OD OA for CR/LF as I expect. I'd like to replace the OD/LF with brs. I spent hours trying every User Notes in the PHP Manual for this simple

Re: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Robert Cummings
I don't know if it helps... but you should take a look at the ini_set() function. Perhaps you can set the appropriate stuff using that. Cheers, Rob. CF High wrote: Hey Tom. Thanks for the idea; however, since we're not hosting the site on our own server, we don't have permissions for

[PHP] Printer Friendly page

2003-02-22 Thread Sebastian
Greetings all. I am looking for a simple print page script. I tried just about all the print scripts at hotscripts.com and not one works (at least for me). Does anyone know of one that works under php v 4.2.3 with register globals off? thanks in advance.

[PHP] rewrite rule help anyone?

2003-02-22 Thread Shawn McKenzie
Slightly off topic, but I have some PHP also ;-) I am trying to make search engine friendly URLs for a site, but want this to be fairly dynamic and work with any new script and vars. If anyone would be willing, I need help on a mod_rewrite rule or rules? I'm thinking it should be fairly simple,

Re: [PHP] Question about replacing \r\n with br

2003-02-22 Thread Lowell Allen
From: Al [EMAIL PROTECTED] I can't find a way to replace \r\n codes with br in a text file. I'm reading a text file that was prepared with windows notepad The hex code shows OD OA for CR/LF as I expect. I'd like to replace the OD/LF with brs. I spent hours trying every User Notes in

Re: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Noah
Don't have access to php.ini -- we're in a shared hosting environment... I can make it work with $my_include_path = $DOCUMENT_ROOT . includes/file.inc; Then I just prepend include files with $my_include_path. A little more work, but better than chucking all my files in the root

RE: [PHP] preg_match question: locating unmatched HTML tags

2003-02-22 Thread Andy Crain
John, Thanks. I'm considering that, but the application I'm working on is for a small intranet that will be for only a small group of supervised users, so vulnerability isn't such a large concern. Andy -Original Message- From: John W. Holmes [mailto:[EMAIL PROTECTED] Sent: Saturday,

RE: [PHP] preg_match question: locating unmatched HTML tags

2003-02-22 Thread Andy Crain
Ernest, Thanks very much. This is pretty close to what I'm looking for. The only problem is that it doesn't catch nested tags. For example, some btext /usome/b text some text makes it through without error since, I think, preg_match resumes matching at the /b after spotting and then checking its

RE: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread John W. Holmes
Hey John. Do you ever sleep? You've got a zillion posts in this news group.. Sleep is for the weak... To answer your question, it's not that I'm afraid of absolute paths, it's that I don't properly understand how to implement them. I understand why the path references are not

[PHP] Why use persistent connections? || Data driven site

2003-02-22 Thread CF High
Hey all. We've got a site makes several queries to our MySql db in every site page. Should we be using persistent connections, or are we better off opening and closing connections on each query? Thanks for any leads, --Noah -- -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] preg_match question: locating unmatched HTML tags

2003-02-22 Thread John W. Holmes
Well, like someone else said, it's hard to look for and match stuff that isn't there. In addition to the security benefit, it's just easier to code something that looks for [b](.*)[/b] and replaces those tags with b and /b (or strong and /strong if you want to be technically correct). Honestly,

RE: [PHP] Why use persistent connections? || Data driven site

2003-02-22 Thread John W. Holmes
We've got a site makes several queries to our MySql db in every site page. Should we be using persistent connections, or are we better off opening and closing connections on each query? You should open a connection at the beginning of your page, run your multiple queries, and then close it at

RE: [PHP] preg_match question: locating unmatched HTML tags

2003-02-22 Thread Andy Crain
Good point, and I might end up doing just that if I can't find a solution. The problem is that I'm considering using for some forms a textarea wysiwyg replacement (e.g., http://www.interactivetools.com/products/htmlarea/ or http://www.siteworkspro.com) that results in HTML output. And I wanted to

[PHP] upgrade to 4.3.0 nearly doubled execution time

2003-02-22 Thread Rhett Livingston
I upgraded my development system from PHP 4.1.2 to PHP 4.3.0 last week and the performance of my scripts took a dive. Specifically, the average time to parse my scripts (time from executing first line of code to executing first line after includes) went from about 100ms to about 200ms, and, very

Re: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Noah
Thanks again John for the informative reply. Now I follow what you're doing. Get some sleep ;--) --Noah - Original Message - From: John W. Holmes [EMAIL PROTECTED] To: 'Noah' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, February 22, 2003 1:56 PM Subject: RE: [PHP] Sitewide

[PHP] Select Field Form Value

2003-02-22 Thread Mike Walth
Hello: Here is my problem. I am using the following two lines to get multiple values from a form field select statement. while (list($key,$val) = each($_POST[Restrictions])) {$Restrictions .= $val,;} trtdRestrictions/tdtd$Restrictions/td/tr The problem is when it fills out the table, it adds

[PHP] sending results by email

2003-02-22 Thread Luis A
how can i make the server email me the results of this form __ form name=form1 method=post action= TEXTAREA NAME= ROWS=10 COLS=26 width =15 /TEXTAREA input type=submit name=Submit value=Enviar table width=100% border=0 height=27 tr

[PHP] SMS messages and the From field...

2003-02-22 Thread Jeff Lewis
I have been using mail() to send SMS messages to my phone but the From address never seems to work as I set it. When it arrives in my email client it works fine but when it gets to my phone it does. I have set headers like so: From: $from_email\r\nReply-To: $from_email\r\nReturn-path: $from_email

RE: [PHP] sending results by email

2003-02-22 Thread Dennis Cole
A subjestion would be to use the mail() function to. You can find the mail fuction at http://www.php.net/manual/en/function.mail.php. -Original Message- From: Luis A [mailto:[EMAIL PROTECTED] Sent: Saturday, February 22, 2003 5:42 PM To: [EMAIL PROTECTED] Subject: [PHP] sending results by

Re: [PHP] upgrade to 4.3.0 nearly doubled execution time

2003-02-22 Thread Jason k Larson
I'm betting this is related... I upgraded to 4.3.0 on my production linux servers and began to have serious socket connection issues. Rolling back to 4.2.3 cleared everything up. I also saw an increase in script execution times with 4.3.0, which became much better using 4.2.3. I noticed

Re: [PHP] Printer Friendly page

2003-02-22 Thread olinux
make your own. what could be simpler? If you have data that is generated with php, just change the output to just send very basic html page. olinux --- Sebastian [EMAIL PROTECTED] wrote: Greetings all. I am looking for a simple print page script. I tried just about all the print scripts

RE: [PHP] Select Field Form Value

2003-02-22 Thread John W. Holmes
Here is my problem. I am using the following two lines to get multiple values from a form field select statement. while (list($key,$val) = each($_POST[Restrictions])) {$Restrictions .= $val,;} trtdRestrictions/tdtd$Restrictions/td/tr The problem is when it fills out the table, it adds

[PHP] Re: preg_match question: locating unmatched HTML tags

2003-02-22 Thread php
you could consider configuring a prebuild html editor (just WYSIWYG) without any problems of users having to write code at all check out: http://www.interactivetools.com/products/htmlarea/ Andy Crain [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] My apologies in advance if this too

[PHP] flashing text possible on PDA?

2003-02-22 Thread Denis L. Menezes
Hello friends. I am developing some light pages on the web basically for access by PDAs. I need to put and alert for some members so that as soon as they log in, the next page will show a flashing alert on the page. Can anyone suggest how I can make text flash on a PDA considering that the PDA

Re: [PHP] flashing text possible on PDA?

2003-02-22 Thread Leo Spalteholz
On February 22, 2003 04:38 pm, Denis L. Menezes wrote: Hello friends. I am developing some light pages on the web basically for access by PDAs. I need to put and alert for some members so that as soon as they log in, the next page will show a flashing alert on the page. Can anyone suggest

[PHP] Writing to COM-Port with PHP 4.3.0 on OS/2 with Apache 2.0.44

2003-02-22 Thread Thorolf Godawa
Hi, how can I write to a COM-Port on OS/2 using PHP 4.3.0 with Apache 2.0.44? With $fp = fopen (COM1, w+); $string = chr($OutCmd) . chr($Platine) . chr($OutData) . chr($OutPruef); fputs ($fp, $string ); fclose ($fp); it seems not to work ($fp returns Resource id #2), and $fp = fopen (COM1:,

[PHP] Re: Question about str_replace()

2003-02-22 Thread Hans Prins
Assuming that you do want to replace [p] with br, the code you posted worked for me. The following printed: leadingtextbrtrailingtext to the screen ?php $find = array(' ','WOD', '', chr(146), '[p]'); $replace = array(amp; ,Wamp;OD, 'amp;', ', 'br'); $text = leadingtext[p]trailingtext; $words

Re: [PHP] upgrade to 4.3.0 nearly doubled execution time

2003-02-22 Thread Rasmus Lerdorf
Yes, I have noticed some performance issues as well, but we need to nail it down better before we can start really going after this. Could we call on the collective masses of php-general users to run some benchmark tests? Just build yourselves a libphp4.so for both 4.2.x and 4.3.x and switch the

Re[2]: [PHP] Sitewide Header Footer Includes || Trouble with Relative Paths..........

2003-02-22 Thread Tom Rogers
Hi, Sunday, February 23, 2003, 9:13:16 AM, you wrote: CH Hey Tom. CH Thanks for the idea; however, since we're not hosting the site on our own CH server, we don't have permissions for altering the php.ini file.. CH --Noah It only sets the ini path for the current document, it does not

[PHP] Permission Denied

2003-02-22 Thread Stephen Craton
Hello, I'm having a few problems with deleting items. When I do the unlink() function, it gives me a permission denied error. For example..here's the code: unlink($this-currentfolder().'/packs/'.$title.'/'.$intname); Here's the error returned: Warning: unlink() failed (Permission

[PHP] Permission Denied

2003-02-22 Thread Stephen Craton
Hello, I'm having a few problems with deleting items. When I do the unlink() function, it gives me a permission denied error. For example..here's the code: unlink($this-currentfolder().'/packs/'.$title.'/'.$intname); Here's the error returned: Warning: unlink() failed (Permission

RE: [PHP] flashing text possible on PDA?

2003-02-22 Thread John W. Holmes
I am developing some light pages on the web basically for access by PDAs. I need to put and alert for some members so that as soon as they log in, the next page will show a flashing alert on the page. Can anyone suggest how I can make text flash on a PDA considering that the PDA browsers do

Re: [PHP] preg_match question: locating unmatched HTML tags

2003-02-22 Thread Tom Rogers
Hi, Saturday, February 22, 2003, 12:35:15 PM, you wrote: AC My apologies in advance if this too basic or there's a solution easily AC found out there, but after lots of searching, I'm still lost. AC I'm trying to build a regexp that would parse user-supplied text and AC identify cases where

Re: [PHP] Printer Friendly page

2003-02-22 Thread Justin French
if you're already building dynamic pages, just roll your own... set a GET var to trigger a simple page view (simple layout, less HTML, very little CSS, no tables, etc etc) which uses the same CONTENT but keeps it simple for printing. justin on 23/02/03 8:28 AM, Sebastian ([EMAIL PROTECTED])

Re: [PHP] preg_match question: locating unmatched HTML tags

2003-02-22 Thread Tom Rogers
Hi, Saturday, February 22, 2003, 12:35:15 PM, you wrote: AC My apologies in advance if this too basic or there's a solution easily AC found out there, but after lots of searching, I'm still lost. AC I'm trying to build a regexp that would parse user-supplied text and AC identify cases where