Re: spam>[PHP-DB] Remove

2024-03-12 Thread Zachary Menzies
Yes, just send an e-mail to "php-db+unsubscr...@lists.php.net" I imagine it will ask for confirmation. From: Kevin McColl Sent: March 12, 2024 10:53 AM To: php-db@lists.php.net Subject: spam>[PHP-DB] Remove Is there a way to stop or remove receiving these emails?

[PHP-DB] Remove

2024-03-12 Thread Kevin McColl
Is there a way to stop or remove receiving these emails?

RE: [PHP-DB] Remove newlines from field

2006-03-21 Thread Giff Hammar
-Original Message- From: Ludvig Ericson [mailto:[EMAIL PROTECTED] Sent: Monday, March 20, 2006 5:54 PM To: Giff Hammar Cc: php-db@lists.php.net Subject: Re: [PHP-DB] Remove newlines from field Mind you Pearl programmers, what would that do? [snip] It changes the end of line

RE: [PHP-DB] Remove newlines from field

2006-03-21 Thread Giff Hammar
-Original Message- From: Miles Thompson [mailto:[EMAIL PROTECTED] Sent: Monday, March 20, 2006 6:17 PM To: php-db@lists.php.net Subject: RE: [PHP-DB] Remove newlines from field tops snipped At 04:00 PM 3/20/2006, you wrote: I am using a PHP script to pull information from a FoxPro

[PHP-DB] Remove newlines from field

2006-03-20 Thread Giff Hammar
I am using a PHP script to pull information from a FoxPro database via ODBC. One of the fields is a memo field (large text) that contains newline characters. Displaying this info to the web page is fine as the newlines are ignored. The challenge is when I combine user entered text with the

RE: [PHP-DB] Remove newlines from field

2006-03-20 Thread Bastien Koert
see the nl2br function in the manual (www.php.net/nl2br) bastien From: Giff Hammar [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Remove newlines from field Date: Mon, 20 Mar 2006 17:00:49 -0500 I am using a PHP script to pull information from a FoxPro database via ODBC. One

RE: [PHP-DB] Remove newlines from field

2006-03-20 Thread Giff Hammar
:[EMAIL PROTECTED] Sent: Monday, March 20, 2006 5:14 PM To: Giff Hammar Subject: Re: [PHP-DB] Remove newlines from field Try nl2br. http://php.net/nl2br At 04:00 PM 3/20/2006, you wrote: I am using a PHP script to pull information from a FoxPro database via ODBC. One of the fields is a memo field

Re: [PHP-DB] Remove newlines from field

2006-03-20 Thread Ludvig Ericson
like the 'local $/ = \r\n' construct in perl... Giff _ From: Jeremy Peterson [mailto:[EMAIL PROTECTED] Sent: Monday, March 20, 2006 5:14 PM To: Giff Hammar Subject: Re: [PHP-DB] Remove newlines from field Try nl2br. http://php.net/nl2br At 04:00 PM 3/20/2006, you wrote: I am

RE: [PHP-DB] Remove newlines from field

2006-03-20 Thread Miles Thompson
tops snipped At 04:00 PM 3/20/2006, you wrote: I am using a PHP script to pull information from a FoxPro database via ODBC. One of the fields is a memo field (large text) that contains newline characters. Displaying this info to the web page is fine as the newlines are ignored. The challenge

RE: [PHP-DB] Remove newlines from field

2006-03-20 Thread Miles Thompson
At 07:17 PM 3/20/2006, Miles Thompson wrote: tops snipped Forgot to add that the writers work in WP 5.2 for Windows, because it has an excellent indexing function which enables them to locate back stories v. quickly. That text is cut and pasted into an HTML textarea, which is saved to a

Re: [PHP-DB] Remove MySQL Server

2005-10-21 Thread Unnawut Leepaisalsuwanna
1. Run Regedit or regedt32. 2. Find the registry entry: |HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services| 3. Find the service there and delete it. 4. reboot W Roothman wrote: Dear All, Anyone knows how to remove the MySQL server from XP under

Re: [PHP-DB] Remove MySQL Server

2005-10-21 Thread Shahmat Dahlan
You can also run this, that is if you haven't manually removed your mysql installation directory c:\mysqld --remove service name ,where service name is usually MySQL Unnawut Leepaisalsuwanna wrote: 1. Run Regedit or regedt32. 2. Find the registry entry:

[PHP-DB] Remove MySQL Server

2005-10-20 Thread W Roothman
Dear All, Anyone knows how to remove the MySQL server from XP under 'Services'? No option to delete or uninstall. R's, Will

[PHP-DB] Remove white space?

2004-04-22 Thread Robert Sossomon
I am pulling data from a MySQL DB and I need to remove the whitespace on the variable and turn it to lowercase. ! Code Snippet $get_items = select * from PFS_items; $get_items_res = mysql_query($get_items) or die(mysql_error()); while ($items = mysql_fetch_array($get_items_res)) { $item_id =

RE: [PHP-DB] Remove white space?

2004-04-22 Thread Hutchins, Richard
To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [PHP-DB] Remove white space? I am pulling data from a MySQL DB and I need to remove the whitespace on the variable and turn it to lowercase. ! Code Snippet $get_items = select * from PFS_items; $get_items_res = mysql_query($get_items

Re: [PHP-DB] Remove white space?

2004-04-22 Thread Miles Thompson
1. Don't cross-post! 2. Read the string functions in the php manual. You probably don't want to remove all white space, just trim. Have a look at http://ca3.php.net/manual/en/function.trim.php 3. You will find a function to do exactly what you want. Regards - Miles Thompson At 10:51 AM

[PHP-DB] Remove log files in Postgres

2004-03-01 Thread Norma Ramirez - TECNOSOFT
Hi all, does any one know a configuration parameter or command line that automatically remove in a period of time the log files in postresql database? Thanks a lot. Norma Ramirez

Re: [PHP-DB] Remove all instances of a character....

2003-12-29 Thread Tristan . Pretty
[EMAIL PROTECTED] 24/12/2003 13:27 Please respond to CPT John W. Holmes [EMAIL PROTECTED] To [EMAIL PROTECTED], [EMAIL PROTECTED] cc Subject Re: [PHP-DB] Remove all instances of a character From: [EMAIL PROTECTED] I have a MySQL database, with around 500 entries in one table... I've

RE: [PHP-DB] Remove all instances of a character....

2003-12-29 Thread Peter Lovatt
PROTECTED] Subject: Re: [PHP-DB] Remove all instances of a character Tried that but I got an error when using PHPMyAdmin... UPDATE risk_corpdatacapture email = REPLACE(email,';','') just don't work??? Wll confused now, cuase that's what I tried before I posted to the list... and you guys say

Re: [PHP-DB] Remove all instances of a character....

2003-12-29 Thread John W. Holmes
[EMAIL PROTECTED] wrote: Tried that but I got an error when using PHPMyAdmin... UPDATE risk_corpdatacapture email = REPLACE(email,';','') just don't work??? You're missing SET... UPDATE risk_corpdatacapture SET email = REPLACE(email,';',''); -- ---John Holmes... Amazon Wishlist:

Re: [PHP-DB] Remove all instances of a character....

2003-12-29 Thread Tristan . Pretty
THAT'S IT!!! Sweet... Xmas hangover be damned... got there in the end..! Cheers everyone, happy new year!!! John W. Holmes [EMAIL PROTECTED] 29/12/2003 13:11 Please respond to [EMAIL PROTECTED] To [EMAIL PROTECTED] cc [EMAIL PROTECTED] Subject Re: [PHP-DB] Remove all instances

[PHP-DB] Remove all instances of a character....

2003-12-24 Thread Tristan . Pretty
I have a MySQL database, with around 500 entries in one table... I've noticed that many entries have an erroneous ';' in the one of the fields. What I need to do, is tell MySQL to go through the ENTIRE table and find any instances of ' ; ' and them delete them... leaving the rest of the data

Re: [PHP-DB] Remove all instances of a character....

2003-12-24 Thread Muhammed Mamedov
Try this : mysql_query(DELETE FROM YOURTABLE WHERE YOURCOLUMN_NAME=';'); Saygilarla, Muhammed Mamedov - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 24, 2003 1:12 PM Subject: [PHP-DB] Remove all instances of a character I have a MySQL

Re: [PHP-DB] Remove all instances of a character....

2003-12-24 Thread CPT John W. Holmes
From: [EMAIL PROTECTED] I have a MySQL database, with around 500 entries in one table... I've noticed that many entries have an erroneous ';' in the one of the fields. What I need to do, is tell MySQL to go through the ENTIRE table and find any instances of ' ; ' and them delete

[PHP-DB] REMOVE ME

2003-10-09 Thread Muzzamil
Pl remove me from this mailing list Thanks [EMAIL PROTECTED] php-db Digest 8 Oct 2003 19:41:35 - Issue 2071 Topics (messages 30898 through 30907): Re: Is it possible to access MySQL table on server A from server B? 30898 by: ramki 30900 by: Cesar Schneider My SQL

Re: [PHP-DB] REMOVE ME

2003-10-09 Thread Mac Intyre, Steven
go to news.php.net and subscribe your self. On 9 Oct 2003 at 15:47, Muzzamil wrote: Pl remove me from this mailing list Thanks [EMAIL PROTECTED] php-db Digest 8 Oct 2003 19:41:35 - Issue 2071 Topics (messages 30898 through 30907): Re: Is it possible to access MySQL

Re: [PHP-DB] REMOVE ME

2003-10-09 Thread Mac Intyre, Steven
http://www.php.net/mailing-lists.php even On 9 Oct 2003 at 15:47, Muzzamil wrote: Pl remove me from this mailing list Thanks [EMAIL PROTECTED] php-db Digest 8 Oct 2003 19:41:35 - Issue 2071 Topics (messages 30898 through 30907): Re: Is it possible to access MySQL table

[PHP-DB] remove from db renumbering

2002-06-30 Thread Chris Payne
Hi there everyone, I have my id field auto incrementing (Of course) and I have a utility that allows me to remove items from it, the problem is when I remove something the items after it keep their ID’s leaving a gap in the ID. For example, say I have 1-10 in the ID field and I remove number 8,

Re: [PHP-DB] remove from db renumbering

2002-06-30 Thread Raquel Rice
On Sun, 30 Jun 2002 20:21:18 -0400 Chris Payne Chris Payne [EMAIL PROTECTED] wrote: Hi there everyone, I have my id field auto incrementing (Of course) and I have a utility that allows me to remove items from it, the problem is when I remove something the items after it keep their ID’s