[PHP] text insertion

2011-08-10 Thread Chris Stinemetz
How do I preserve text formatting when text is inserted into a database table? For example: I am using a textarea to allow users to leave comments into the database and I am using: ' . mysql_real_escape_string($_POST['store_comments']) . ', to prevent SQL injection; But when I call the data

Re: [PHP] text insertion

2011-08-10 Thread Ashley Sheridan
Chris Stinemetz chrisstinem...@gmail.com wrote: How do I preserve text formatting when text is inserted into a database table? For example: I am using a textarea to allow users to leave comments into the database and I am using: ' . mysql_real_escape_string($_POST['store_comments']) . ', to

Re: [PHP] text insertion

2011-08-10 Thread Chris Stinemetz
Are you sure its not preserved? When you output text in a browser, by default its output as html, not plain text. Html ignores extraneous whitespace, and doesn't use a monospaced font, so formatting text into columns in a textarea won't work either. Look at the html source code to see what

Re: [PHP] text insertion

2011-08-10 Thread Shaun Farrell
You could try using markdown too. Sent from my iPhone On Aug 10, 2011, at 3:57 PM, Ashley Sheridan a...@ashleysheridan.co.uk wrote: Chris Stinemetz chrisstinem...@gmail.com wrote: How do I preserve text formatting when text is inserted into a database table? For example: I am using

Re: [PHP] text insertion

2011-08-10 Thread Daniel P. Brown
:On Wed, Aug 10, 2011 at 16:02, Chris Stinemetz chrisstinem...@gmail.com wrote: Are you sure its not preserved? When you output text in a browser, by default its output as html, not plain text. Html ignores extraneous whitespace, and doesn't use a monospaced font, so formatting text into

Re: [PHP] text insertion

2011-08-10 Thread Chris Stinemetz
   Use HTML 'pre' tags:        pre?php echo $your_content; ?/pre I just tried that and that puts all the text on a single line. echo 'tr class=topic-post td class=user-poststrong' . $posts_row['first_name'] . ' ' . $posts_row['last_name'] . ' ' . date('m-d-Y h:iA',

Re: [PHP] text insertion

2011-08-10 Thread hdedeyan
how about echo nl2br($your_content); - Original Message - From: Chris Stinemetz chrisstinem...@gmail.com Date: Wednesday, August 10, 2011 5:09 pm Subject: Re: [PHP] text insertion To: Daniel P. Brown daniel.br...@parasane.net Cc: Ashley Sheridan a...@ashleysheridan.co.uk, PHP General

Re: [PHP] text insertion

2011-08-10 Thread Chris Stinemetz
No luck. Thanks. On Aug 10, 2011 4:17 PM, hdede...@videotron.ca wrote: how about echo nl2br($your_content); - Original Message - From: Chris Stinemetz chrisstinem...@gmail.com Date: Wednesday, August 10, 2011 5:09 pm Subject: Re: [PHP] text insertion To: Daniel P. Brown

Re: [PHP] text insertion

2011-08-10 Thread Daniel P. Brown
On Wed, Aug 10, 2011 at 17:37, Chris Stinemetz chrisstinem...@gmail.com wrote: No luck. Thanks. Per list rules, please don't top-post. If the situation you're describing is accurate and correct, then pre is indeed what you want. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud

Re: Re: [PHP] text insertion

2011-08-10 Thread Tim Streater
On 10 Aug 2011 at 22:39, Daniel P. Brown daniel.br...@parasane.net wrote: On Wed, Aug 10, 2011 at 17:37, Chris Stinemetz chrisstinem...@gmail.com wrote: No luck. Thanks. Per list rules, please don't top-post. If the situation you're describing is accurate and correct, then pre is

Re: Re: [PHP] text insertion

2011-08-10 Thread Ashley Sheridan
Tim Streater t...@clothears.org.uk wrote: On 10 Aug 2011 at 22:39, Daniel P. Brown daniel.br...@parasane.net wrote: On Wed, Aug 10, 2011 at 17:37, Chris Stinemetz chrisstinem...@gmail.com wrote: No luck. Thanks. Per list rules, please don't top-post. If the situation you're

Re: Re: [PHP] text insertion

2011-08-10 Thread Tim Streater
On 10 Aug 2011 at 22:07, Chris Stinemetz chrisstinem...@gmail.com wrote:    Use HTML 'pre' tags:        pre?php echo $your_content; ?/pre I just tried that and that puts all the text on a single line. You could write the string into another textarea, which you could make readonly for

[PHP] Text messaging from the web

2010-10-14 Thread Paul M Foster
Folks: Being fairly geezerly, I know almost nothing about this, so be gentle. Assuming someone entered information in a form on a website. Normally, you would email the responses to someone. But what if you wanted to send this information to a smartphone via text messaging? Is this possible,

Re: [PHP] Text messaging from the web

2010-10-14 Thread Larry Martell
On Thu, Oct 14, 2010 at 9:45 AM, Paul M Foster pa...@quillandmouse.com wrote: Folks: Being fairly geezerly, I know almost nothing about this, so be gentle. Assuming someone entered information in a form on a website. Normally, you would email the responses to someone. But what if you wanted

Re: [PHP] Text messaging from the web

2010-10-14 Thread Alexis
iT DEPENDS on which country you are in. In Canada you can send a text message to any mobile phone simply by sending an email to the phone number followed by the service provider's details...eg 1234567...@telus.net Details for the exact addresses each provider use, can be found on the net. In

Re: [PHP] Text messaging from the web

2010-10-14 Thread Sebastian Detert
Paul M Foster schrieb: Folks: Being fairly geezerly, I know almost nothing about this, so be gentle. Assuming someone entered information in a form on a website. Normally, you would email the responses to someone. But what if you wanted to send this information to a smartphone via text

RE: [PHP] Text messaging from the web

2010-10-14 Thread Jay Blanchard
[snip] Being fairly geezerly, I know almost nothing about this, so be gentle. [/snip] Rubber gloves first [snip] text messaging gateway? [/snip] It is fairly simple and we offer that from one of our sites (because it is a cell phone service provider). In this case we use PHP to send the

Re: [PHP] Text messaging from the web

2010-10-14 Thread chris h
You can send a text message via email: Verizon: 10digitphonenum...@vtext.com ATT: 10digitphonenum...@txt.att.net Sprint: 10digitphonenum...@messaging.sprintpcs.com T-Mobile: 10digitphonenum...@tmomail.net Nextel: 10digitphonenum...@messaging.nextel.com Cingular:

Re: [PHP] Text messaging from the web

2010-10-14 Thread Sebastian Detert
Larry Martell schrieb: On Thu, Oct 14, 2010 at 9:45 AM, Paul M Foster pa...@quillandmouse.com wrote: Folks: Being fairly geezerly, I know almost nothing about this, so be gentle. Assuming someone entered information in a form on a website. Normally, you would email the responses to

Re: [PHP] Text messaging from the web

2010-10-14 Thread Bastien Koert
On Thu, Oct 14, 2010 at 11:50 AM, Larry Martell la...@software-horizons.com wrote: On Thu, Oct 14, 2010 at 9:45 AM, Paul M Foster pa...@quillandmouse.com wrote: Folks: Being fairly geezerly, I know almost nothing about this, so be gentle. Assuming someone entered information in a form on a

Re: [PHP] Text messaging from the web

2010-10-14 Thread Paul M Foster
On Thu, Oct 14, 2010 at 11:56:20AM -0400, chris h wrote: You can send a text message via email: � �Verizon: [1]10digitphonenum...@vtext.com � �ATT: [2]10digitphonenum...@txt.att.net � �Sprint: [3]10digitphonenum...@messaging.sprintpcs.com � �T-Mobile:

Re: [PHP] Text messaging from the web

2010-10-14 Thread Larry Martell
On Thu, Oct 14, 2010 at 10:01 AM, Sebastian Detert php-maill...@elygor.de wrote: Larry Martell schrieb: On Thu, Oct 14, 2010 at 9:45 AM, Paul M Foster pa...@quillandmouse.com wrote: Folks: Being fairly geezerly, I know almost nothing about this, so be gentle. Assuming someone entered

Re: [PHP] Text messaging from the web

2010-10-14 Thread Sebastian Detert
Larry Martell schrieb: On Thu, Oct 14, 2010 at 10:01 AM, Sebastian Detert php-maill...@elygor.de wrote: Larry Martell schrieb: On Thu, Oct 14, 2010 at 9:45 AM, Paul M Foster pa...@quillandmouse.com wrote: Folks: Being fairly geezerly, I know almost nothing about this, so be gentle.

Re: [PHP] Text messaging from the web

2010-10-14 Thread Larry Martell
On Thu, Oct 14, 2010 at 10:29 AM, Sebastian Detert php-maill...@elygor.de wrote: Larry Martell schrieb: On Thu, Oct 14, 2010 at 10:01 AM, Sebastian Detert php-maill...@elygor.de wrote: Larry Martell schrieb: On Thu, Oct 14, 2010 at 9:45 AM, Paul M Foster pa...@quillandmouse.com wrote:

Re: [PHP] Text messaging from the web

2010-10-14 Thread Larry Martell
On Thu, Oct 14, 2010 at 9:56 AM, chris h chris...@gmail.com wrote: You can send a text message via email:    Verizon: 10digitphonenum...@vtext.com    ATT: 10digitphonenum...@txt.att.net    Sprint: 10digitphonenum...@messaging.sprintpcs.com    T-Mobile: 10digitphonenum...@tmomail.net    

[PHP] Text editor for Ubuntu with FTP

2010-07-31 Thread Jordan Jovanov
Hello to All, I only whant to star discussion for who is the best programm to write php and html script. I use dreamweaver, but now I change my OS to ubuntu and I want some suggestions for some Text editor for FTP for Ubuntu Thanks A lot Jordan Jovanov -- PHP General Mailing List

Re: [PHP] Text editor for Ubuntu with FTP

2010-07-31 Thread Ashley Sheridan
On Sat, 2010-07-31 at 13:03 +0200, Jordan Jovanov wrote: Hello to All, I only whant to star discussion for who is the best programm to write php and html script. I use dreamweaver, but now I change my OS to ubuntu and I want some suggestions for some Text editor for FTP for Ubuntu

Re: [PHP] Text editor for Ubuntu with FTP

2010-07-31 Thread Robert Cummings
On 10-07-31 07:03 AM, Jordan Jovanov wrote: Hello to All, I only whant to star discussion for who is the best programm to write php and html script. I use dreamweaver, but now I change my OS to ubuntu and I want some suggestions for some Text editor for FTP for Ubuntu Just mount the FTP

[PHP] Text editor

2010-07-27 Thread Jordan Jovanov
Hello All I need me to add form for comment to one web site, but i want to use some taxt edtior. Simething similar of this editor http://www.seekcodes.com/text-editor.php , but i can not find the code. Do you somebody know some simple text editor with buttons for bold italic etc. Thanks a

RE: [PHP] Text editor

2010-07-27 Thread Jon Haworth
Hi Jordan, Do you somebody know some simple text editor with buttons for bold italic etc. TinyMCE is worth a look: http://tinymce.moxiecode.com/ HTH Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Text editor

2010-07-27 Thread Dušan Novaković
You can use TinyMCE. It's really easy to integrate in system. Check on official website. Dusan On Tue, Jul 27, 2010 at 12:10 PM, Jordan Jovanov jovanovj...@gmail.com wrote: Hello All I need me to add form for comment to one web site, but i want to use some taxt edtior. Simething similar of

Re: [PHP] Text editor

2010-07-27 Thread Ashley Sheridan
On Tue, 2010-07-27 at 13:49 +0200, Dušan Novaković wrote: You can use TinyMCE. It's really easy to integrate in system. Check on official website. Dusan On Tue, Jul 27, 2010 at 12:10 PM, Jordan Jovanov jovanovj...@gmail.com wrote: Hello All I need me to add form for comment to one

Re: [PHP] Text editor

2010-07-27 Thread Jordan Jovanov
On 27/07/2010 13:53, Ashley Sheridan wrote: On Tue, 2010-07-27 at 13:49 +0200, Dušan Novaković wrote: You can use TinyMCE. It's really easy to integrate in system. Check on official website. Dusan On Tue, Jul 27, 2010 at 12:10 PM, Jordan Jovanovjovanovj...@gmail.com wrote: Hello All I

[PHP] Text File Busy

2009-10-21 Thread Floyd Resler
For some reason I'm getting a Text file busy error when I try to execute PHP scripts from the command line now. It used to work, but now it doesn't. I do have #!/usr/bin/php at the top of my script. If I feed the file to php (i.e. /usr/bin/php -f filename.php) it works. Of course, I

Re: [PHP] Text To Speech Update

2008-11-30 Thread Nathan Rixham
Michael Kubler wrote: Works ok for me on FFox v2 and v3 on my Windows XP machines, but when trying it on IE v6.0 the speech is played back REALLY fast. Like super chipmunk style. sounds like the double speed playback flash bug; upgrade you're flash player and should work -- PHP General

Re: [PHP] Text To Speech Update

2008-11-30 Thread tedd
At 7:21 PM -0500 11/29/08, Daniel P. Brown wrote: Any/All: For those of you who were asking about the PHP Text-To-Speech system I had running, it's back online now. If you have a few free seconds, please take a look at http://www.pilotpig.net/txt2wav.php and let me know if it's working

Re: [PHP] Text To Speech Update

2008-11-30 Thread Craige Leeder
Daniel P. Brown wrote: Any/All: For those of you who were asking about the PHP Text-To-Speech system I had running, it's back online now. If you have a few free seconds, please take a look at http://www.pilotpig.net/txt2wav.php and let me know if it's working for sure in your browser

[PHP] Text To Speech Update

2008-11-29 Thread Daniel P. Brown
Any/All: For those of you who were asking about the PHP Text-To-Speech system I had running, it's back online now. If you have a few free seconds, please take a look at http://www.pilotpig.net/txt2wav.php and let me know if it's working for sure in your browser and on your OS

Re: [PHP] Text To Speech Update

2008-11-29 Thread Nathan Nobbe
On Sat, Nov 29, 2008 at 5:21 PM, Daniel P. Brown [EMAIL PROTECTED]wrote: Any/All: For those of you who were asking about the PHP Text-To-Speech system I had running, it's back online now. If you have a few free seconds, please take a look at http://www.pilotpig.net/txt2wav.php

Re: [PHP] Text To Speech Update

2008-11-29 Thread Michael Kubler
PM, Daniel P. Brown [EMAIL PROTECTED]wrote: Any/All: For those of you who were asking about the PHP Text-To-Speech system I had running, it's back online now. If you have a few free seconds, please take a look at http://www.pilotpig.net/txt2wav.php and let me know if it's working

Re: [PHP] Text Color

2008-03-04 Thread tedd
At 10:21 AM -0500 2/29/08, Jason Pruim wrote: On Feb 29, 2008, at 10:07 AM, Richard Heyes wrote: echo TRTD.$myrow[char_name].TD.$myrow[char_level].TD.$class[class].TD.$myrow[kara].TD.$myrow[karateam].TD.$myrow[karasub]; Either CSS styling or the dreaded HTML font color=\#FF\

Re: [PHP] Text Color

2008-03-04 Thread tedd
At 10:29 AM -0500 2/29/08, Andrew Ballard wrote: Let's just get all purist and go back to the class=highlight so we don't find ourselves a year later with a stylesheet that includes .red { color: green; } That's much less likely than: .thisIsFridaysColor { color: green; } The

Re: [PHP] Text Color

2008-03-04 Thread tedd
At 10:44 AM -0500 2/29/08, Daniel Brown wrote: On Fri, Feb 29, 2008 at 10:29 AM, Andrew Ballard [EMAIL PROTECTED] wrote: On Fri, Feb 29, 2008 at 10:21 AM, Jason Pruim [EMAIL PROTECTED] wrote: style .red { color: red; } /style Let's just get all

Re: [PHP] Text Color

2008-03-04 Thread tedd
TRTD.$myrow[char_name].TD.$myrow[char_level].TD.$class[class].TD.$myrow[kara].TD.$myrow[karateam].TD.$myrow[karasub]; Either CSS styling or the dreaded HTML font color=\#FF\ /.$myrow['char_name']./font tags. But you should use CSS: echo 'trtd style=color: red' ... Everyone:

Re: [PHP] Text Color

2008-02-29 Thread Daniel Brown
On Fri, Feb 29, 2008 at 10:29 AM, Andrew Ballard [EMAIL PROTECTED] wrote: On Fri, Feb 29, 2008 at 10:21 AM, Jason Pruim [EMAIL PROTECTED] wrote: style .red { color: red; } /style Let's just get all purist and go back to the class=highlight so we don't

Re: [PHP] Text Color

2008-02-29 Thread Andrew Ballard
On Fri, Feb 29, 2008 at 10:21 AM, Jason Pruim [EMAIL PROTECTED] wrote: On Feb 29, 2008, at 10:07 AM, Richard Heyes wrote: echo TRTD.$myrow[char_name].TD.$myrow[char_level].TD. $class[class].TD.$myrow[kara].TD. $myrow[karateam].TD.$myrow[karasub]; Either CSS styling or the

Re: [PHP] Text Color

2008-02-29 Thread Jason Pruim
On Feb 29, 2008, at 10:07 AM, Richard Heyes wrote: echo TRTD.$myrow[char_name].TD.$myrow[char_level].TD. $class[class].TD.$myrow[kara].TD. $myrow[karateam].TD.$myrow[karasub]; Either CSS styling or the dreaded HTML font color=\#FF\ /.$myrow['char_name']./font tags. But you should

Re: [PHP] Text Color

2008-02-29 Thread Jason Pruim
On Feb 29, 2008, at 10:44 AM, Daniel Brown wrote: On Fri, Feb 29, 2008 at 10:29 AM, Andrew Ballard [EMAIL PROTECTED] wrote: On Fri, Feb 29, 2008 at 10:21 AM, Jason Pruim [EMAIL PROTECTED] wrote: style .red { color: red; } /style Let's just get all purist and go back

Re: [PHP] Text Color

2008-02-29 Thread Daniel Brown
On Thu, Feb 28, 2008 at 11:03 PM, Jeff [EMAIL PROTECTED] wrote: Please, can anyone tell me how to produce colored text? For instance if I wanted to following code to be printed as red text what would I need to add to they code? Thanks in advance. echo

Re: [PHP] Text Color

2008-02-29 Thread Richard Heyes
echo TRTD.$myrow[char_name].TD.$myrow[char_level].TD.$class[class].TD.$myrow[kara].TD.$myrow[karateam].TD.$myrow[karasub]; Either CSS styling or the dreaded HTML font color=\#FF\ /.$myrow['char_name']./font tags. But you should use CSS: echo 'trtd style=color: red' ... --

[PHP] Text Color

2008-02-28 Thread Jeff
Please, can anyone tell me how to produce colored text? For instance if I wanted to following code to be printed as red text what would I need to add to they code? Thanks in advance. echo

Re: [PHP] Text Color

2008-02-28 Thread Jim Lucas
Jeff wrote: Please, can anyone tell me how to produce colored text? For instance if I wanted to following code to be printed as red text what would I need to add to they code? Thanks in advance. echo

Re: [PHP] text messages

2008-02-05 Thread Per Jessen
blackwater dev wrote: I know this isn't specific to php but I need to add some code to my php pages to start sending out text messages. If anyone does this, how do you do it? My local setup is like this: I send an email to '[EMAIL PROTECTED]' - that is routed to my telephone server which

Re: [PHP] text messages

2008-02-05 Thread Richard Lynch
On Mon, February 4, 2008 9:15 pm, blackwater dev wrote: I know this isn't specific to php but I need to add some code to my php pages to start sending out text messages. If anyone does this, how do you do it? Do you simply use a free service like teleflip or do you use a paid aggregator

Re: [PHP] text messages

2008-02-05 Thread blackwater dev
Thanks, We are basically just looking to prototype something with about 50 users for now so I'll check these out. Thanks again! On Feb 5, 2008 12:30 PM, Richard Lynch [EMAIL PROTECTED] wrote: On Mon, February 4, 2008 9:15 pm, blackwater dev wrote: I know this isn't specific to php but I

[PHP] text messages

2008-02-04 Thread blackwater dev
I know this isn't specific to php but I need to add some code to my php pages to start sending out text messages. If anyone does this, how do you do it? Do you simply use a free service like teleflip or do you use a paid aggregator company? Thanks!

Re: [PHP] text messages

2008-02-04 Thread clive
blackwater dev wrote: I know this isn't specific to php but I need to add some code to my php pages to start sending out text messages. If anyone does this, how do you do it? Do you simply use a free service like teleflip or do you use a paid aggregator company? I use a paid service, called

Re: [PHP] PHP-VOX Project Advancement (PHP Text-To-Speech)

2007-09-03 Thread tedd
At 1:02 PM -0400 9/3/07, Daniel Brown wrote: For those of you who aren't hosted with me at PilotPig (http://www.pilotpig.net/) but may be interested in the advancement of the PHP TTS module that I've been working on (if you're not aware, search the list archives ~May, 2007), we're

[PHP] PHP-VOX Project Advancement (PHP Text-To-Speech)

2007-09-02 Thread Daniel Brown
For those of you who aren't hosted with me at PilotPig (http://www.pilotpig.net/) but may be interested in the advancement of the PHP TTS module that I've been working on (if you're not aware, search the list archives ~May, 2007), we're unofficially at version 0.6.6 right now. In the

[PHP] text to HTML

2007-08-26 Thread Ron Piggott
Is there a PHP command that turns text into HTML? EXAMPLE: before Hi. How are you doing? after Hi.p How are you doing?p

RE: [PHP] text to HTML

2007-08-26 Thread Bastien Koert
Subject: [PHP] text to HTML Is there a PHP command that turns text into HTML? EXAMPLE: before Hi. How are you doing? after Hi. How are you doing? _ Explore the seven wonders of the world http://search.msn.com

Re: [PHP] text to HTML

2007-08-26 Thread Richard Lynch
On Sun, August 26, 2007 9:36 am, Ron Piggott wrote: Is there a PHP command that turns text into HTML? EXAMPLE: before Hi. How are you doing? after Hi.p How are you doing?p http://php.net/nl2br You could also do: echo p, str_replace(\n, /p\n/p, $text), /p\n; Another option, if

Re: [PHP] text field truncation with sql server

2007-07-18 Thread Zoltán Németh
2007. 07. 17, kedd keltezéssel 19.48-kor Richard Lynch ezt írta: I lied. The URL *was* a typo. http;//php.net/ another typo ;) http://php.net/ greets Zoltán Németh Sheesh. Sorry folks! On Sun, July 15, 2007 5:02 pm, Bruce Cowin wrote: Thanks Richard for pointing me in the

Re: [PHP] text field truncation with sql server

2007-07-17 Thread Richard Lynch
Probably a heredoc would be easiest for what you've got. http://php.net/ The URL is not a typo. Though your email client may mangle it... :-) On Sun, July 15, 2007 5:02 pm, Bruce Cowin wrote: Thanks Richard for pointing me in the right direction. Yes, it is mssql I'm using. And changing the

Re: [PHP] text field truncation with sql server

2007-07-17 Thread Richard Lynch
I lied. The URL *was* a typo. http;//php.net/ Sheesh. Sorry folks! On Sun, July 15, 2007 5:02 pm, Bruce Cowin wrote: Thanks Richard for pointing me in the right direction. Yes, it is mssql I'm using. And changing the mssql.textlimit and mssql.textsize in the php.ini file fixed my

Re: [PHP] text field truncation with sql server

2007-07-15 Thread Bruce Cowin
Thanks Richard for pointing me in the right direction. Yes, it is mssql I'm using. And changing the mssql.textlimit and mssql.textsize in the php.ini file fixed my problem. You suggested not using all those echo statements. What do you suggest I use instead? Thanks again! Regards,

Re: [PHP] text field truncation with sql server

2007-07-13 Thread Richard Lynch
What is the 3981st character? Does your database driver, whatever it is, which you've told us is not PDO, have any kind of limit in the buffer size of query data back/forth? What driver ARE you using? I see mssql in the code, so assume that's it, right?... Does it happen on every record at

[PHP] text field truncation with sql server

2007-07-12 Thread Bruce Cowin
I have a simple page that displays a record from the sql server database. One of the fields is a text field and keeps getting truncated at 3980 characters. I searched and saw someone had reported this as a PDO bug so I'm not using PDO anymore, but I'm still getting the truncation. Anyone

[PHP] Re: PHP Text-To-Speech Function txt2wav()

2007-05-25 Thread Daniel Brown
On 5/25/07, tedd [EMAIL PROTECTED] wrote: If you find any bugs --- and I'm sure you will --- report them on the SourceForge project page. And don't mind the cluttered code. It's also in the process of being revamped. Thanks. -- Daniel P. Brown Daniel: Your demo:

[PHP] PHP Text-To-Speech Function txt2wav()

2007-05-23 Thread Daniel Brown
I'm cross-posting this on the PHP-VOX and PHP General lists for those of you who were on my old php-vox list on isawit.com and may not have been migrated over. The PHP-VOX project has advanced from alpha to beta status as of today's release of version 0.6.4-18. If anyone on here wants to

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-27 Thread tedd
At 2:35 PM -0400 4/26/07, Daniel Brown wrote: Interesting and being in Pennsylvania, I'm in the all-consent group but being originally from New Jersey, where I still thought it was law, I'm confused isn't there a Federal mandate about this as well? You want confusing, try

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-27 Thread Robert Cummings
On Fri, 2007-04-27 at 09:22 -0400, tedd wrote: At 2:35 PM -0400 4/26/07, Daniel Brown wrote: Interesting and being in Pennsylvania, I'm in the all-consent group but being originally from New Jersey, where I still thought it was law, I'm confused isn't there a Federal mandate

[PHP] Re: PHP Text Messaging

2007-04-27 Thread Michelle Konzack
Am 2007-04-25 09:28:54, schrieb tedd: That's a good idea. But, do you create an entry for every someone or is there a way to use suffixes or something? The Authorities for Regulation of Telecommunication can provide you with a list of national prefixes since they are open. If you have

Re: [PHP] Re: PHP Text Messaging

2007-04-26 Thread clive
Michelle Konzack wrote: I buy from several European GSM-Providers bigger contingents of SMS's and have per SM-Provider 4-16 SIM-Cards... (My Server has 64 Siemens S40 attached) I pay per SMS 0.024 to 0.042 Euro and sell it for 0.06 to 0.18 Euro. The clients do Pre-Pay which mean I have no

Re: [PHP] Re: PHP Text Messaging OT

2007-04-26 Thread tedd
At 5:26 PM -0500 4/25/07, Richard Lynch wrote: On Wed, April 25, 2007 4:46 pm, Daniel Brown wrote: That's an excellent point, Richard. I just switched providers sort of. I went from the right-wing of the Sprint Regime (Sprint PCS) to the left-wing (Nextel) on Saturday afternoon.

Re: [PHP] Re: PHP Text Messaging

2007-04-26 Thread Justin Frim
Richard Lynch wrote: [snip] Relying on Sprint, however, to honor any kind of oral agreement, is a big fat *NOT* I'm sorry, but we just don't have any reocrd of that conversation. You're now 2 weeks overdue, because that extension you claim we gave you doesn't exist. It was like a parody of

Re: [PHP] Re: PHP Text Messaging

2007-04-26 Thread Daniel Brown
Sounds like a good plan. Maybe I'll start recording all of my phone calls. I'll just answer the phone, Hello, this call is being reported for quality assurance and training purposes, this is Dan, wazzzup?!? On 4/26/07, Justin Frim [EMAIL PROTECTED] wrote: Richard Lynch wrote: [snip]

Re: [PHP] Re: PHP Text Messaging

2007-04-26 Thread Tijnema !
On 4/26/07, Daniel Brown [EMAIL PROTECTED] wrote: Sounds like a good plan. Maybe I'll start recording all of my phone calls. I'll just answer the phone, Hello, this call is being reported for quality assurance and training purposes, this is Dan, wazzzup?!? Hmm, i see nobody would ever lie

Re: [PHP] Re: PHP Text Messaging

2007-04-26 Thread Daniel Brown
Yeah, but unfortunately, in the United States, you have to alert someone when you're recording a telephone conversation. On 4/26/07, Tijnema ! [EMAIL PROTECTED] wrote: On 4/26/07, Daniel Brown [EMAIL PROTECTED] wrote: Sounds like a good plan. Maybe I'll start recording all of my phone

Re: [PHP] Re: PHP Text Messaging

2007-04-26 Thread jgodish
In the US you can record your own phone calls, ingoing and outgoing? Usually!! Most states are “one-party-consent law” states. If you live in one of these, you can always record your own in-state calls either openly or surreptitiously, since only one participant’s consent is needed. Likewise, you

Re: [PHP] Re: PHP Text Messaging

2007-04-26 Thread Tijnema !
On 4/26/07, Daniel Brown [EMAIL PROTECTED] wrote: Yeah, but unfortunately, in the United States, you have to alert someone when you're recording a telephone conversation. I hate laws, and i don't live in the US. :) I don't know how the laws are here in the netherlands, but i guess it is

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-26 Thread Daniel Brown
Interesting and being in Pennsylvania, I'm in the all-consent group but being originally from New Jersey, where I still thought it was law, I'm confused isn't there a Federal mandate about this as well? On 4/26/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: In the US you can

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-26 Thread jgodish
Federal law says that at least one party taking part in the call MUST consent to the recording. (18 U.S.C. Sec. 2511(2)(d)) Quoting Daniel Brown [EMAIL PROTECTED]: Interesting and being in Pennsylvania, I'm in the all-consent group but being originally from New Jersey, where I

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-26 Thread Daniel Brown
Thank you, sir! Didn't have the minute to look it up. Excellent citing. On 4/26/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Federal law says that at least one party taking part in the call MUST consent to the recording. (18 U.S.C. Sec. 2511(2)(d)) Quoting Daniel Brown [EMAIL

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-26 Thread jgodish
If your really interested in this subject try; http://www.rcfp.org/taping/ Quoting Daniel Brown [EMAIL PROTECTED]: Interesting and being in Pennsylvania, I'm in the all-consent group but being originally from New Jersey, where I still thought it was law, I'm confused isn't

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-26 Thread Tijnema !
On 4/26/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: If your really interested in this subject try; http://www.rcfp.org/taping/ Does there exists such page for world-wide phone calls? Tijnema Quoting Daniel Brown [EMAIL PROTECTED]: Interesting and being in Pennsylvania, I'm in

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-26 Thread Daniel Brown
John, You do realize now that this thread is going to show up in Google searches for wannabe spies, jealous spouses, lawsuit-filers, and anyone calling Sprint Customer Service, right? On 4/26/07, Tijnema ! [EMAIL PROTECTED] wrote: On 4/26/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Re: [PHP] Re: PHP Text Messaging [Straying Way OT]

2007-04-26 Thread jgodish
The power of the Internet, free speach freedom information at work!! Quoting Daniel Brown [EMAIL PROTECTED]: John, You do realize now that this thread is going to show up in Google searches for wannabe spies, jealous spouses, lawsuit-filers, and anyone calling Sprint Customer

[PHP] Re: PHP Text Messaging

2007-04-25 Thread tedd
Am 2007-04-20 17:58:20, schrieb Stut: You should spool the message, send it to the first GSM-Provicer and wait for bounces before sending it to the next one... I would accept sending the message to 3-5 GSM-Providers @once but creating a database of successfull send messages and bounces... and

Re: [PHP] Re: PHP Text Messaging

2007-04-25 Thread Richard Lynch
On Wed, April 25, 2007 8:28 am, tedd wrote: That's a good idea. But, do you create an entry for every someone or is there a way to use suffixes or something? Given number portability, prefix/suffix schemas are unlikely to be of any use. -- Some people have a gift link here. Know what I want?

Re: [PHP] Re: PHP Text Messaging

2007-04-25 Thread Daniel Brown
That's an excellent point, Richard. I just switched providers sort of. I went from the right-wing of the Sprint Regime (Sprint PCS) to the left-wing (Nextel) on Saturday afternoon. Exact same number --- even the same overall company --- but completely different address for email-to-SMS.

Re: [PHP] Re: PHP Text Messaging

2007-04-25 Thread Richard Lynch
On Wed, April 25, 2007 4:46 pm, Daniel Brown wrote: That's an excellent point, Richard. I just switched providers sort of. I went from the right-wing of the Sprint Regime (Sprint PCS) to the left-wing (Nextel) on Saturday afternoon. Exact same number --- even the same overall

Re: [PHP] Re: PHP Text Messaging

2007-04-25 Thread Daniel Brown
Same thing I'm going through, Rich, but I'm saving about $60/mo. on the Nextel side, actually. And the signal is better on the iDEN network in northeast Pennsylvania than the PCS network. I just hope I don't EVER need to call CustServ or Tech Support because they (Sprint) are by far the

Re: [PHP] Re: PHP Text Messaging

2007-04-25 Thread Richard Lynch
On Wed, April 25, 2007 5:28 pm, Daniel Brown wrote: Same thing I'm going through, Rich, but I'm saving about $60/mo. on the Nextel side, actually. And the signal is better on the iDEN network in northeast Pennsylvania than the PCS network. I just hope I don't EVER need to call

[PHP] Re: PHP Text Messaging

2007-04-24 Thread Michelle Konzack
Am 2007-04-19 09:27:56, schrieb Philip Thompson: Hi. I have attempted to look at the archives for this, but keep getting redirected back to the main PHP site when I click on the archive link. With that said, does anyone know of any good resources for sending text messages using PHP? I

[PHP] Re: PHP Text Messaging

2007-04-24 Thread Michelle Konzack
Am 2007-04-20 17:58:20, schrieb Stut: Daniel Brown wrote: The option that you're discussing is what I've been using for the last several years. All of the ones you sent look correct, from memory, but I'd have to check my scripts to see for sure. When I'm sending a message, I just send it

[PHP] Re: PHP Text Messaging

2007-04-24 Thread Michelle Konzack
Am 2007-04-20 13:05:16, schrieb Daniel Brown: I don't really like to, because I run the risk of getting my IP or even netblock blacklisted, but I can't think of any other way to do it if the user doesn't know what carrier the number belongs to. Any ideas on this subject, I'm absolutely

[PHP] Re: PHP Text Messaging

2007-04-24 Thread Michelle Konzack
Am 2007-04-20 12:36:47, schrieb Edward Vermillion: How does Yahoo do it? You can send text messages through YMessenger and all you need is the number. You can probably do that with others but that's the only one I've ever used. Sending SMS international is expensive... e.g.: France -

Re: [PHP] PHP Text Messaging

2007-04-20 Thread John Ewing
this helps, Brian -Original Message- From: Philip Thompson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 19, 2007 10:28 AM To: php General List Subject: [PHP] PHP Text Messaging Hi. I have attempted to look at the archives for this, but keep getting redirected back to the main

Re: [PHP] PHP Text Messaging

2007-04-20 Thread clive
Philip Thompson wrote: I have Googled this topic and found a few, but find it hard to judge which ones are good. Thanks in advance, ~Philip try bulksms, they have representation in a number of countries, they have php class to interface with them or just simple http posting does the trick

  1   2   3   4   5   >