First  |  Prev |  Next  |  Last
Pages: 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
Encrypt and Decript email using PHP
hello friends, Is there a way to send an encrypted email from server-side PHP, and then decrypt it using an email client such as Outlook? regards saeed http://saeed05.wordpress.com ... 20 Jun 2010 13:29
newbie sequel question: how do we search for multiple things on 1 field like:
SELECT * FROM contacts WHERE state = 'CA' and (name = 'bob' or name = 'sam' or name = 'sara') --Rick On Jun 18, 2010, at 4:30 PM, Dave wrote: SELECT * FROM contacts WHERE state = 'CA' and ???? name = 'bob' or name = 'sam' or name = 'sara' ???? -- Thanks - Dave -- PHP General Ma... 18 Jun 2010 17:59
Replacing Registered Symbol
Hello List. I'm trying to replace the registered (®) symbol from a variable via PHP. The variable $mystring is set to a MySQL field that contains the value "This Is The Registered Symbol ®". Using the following, I try to replace the symbol, but it persists: $moditem = str_replace("®","","$mystring"); ... 18 Jun 2010 17:59
Character Encoding for em-dash
Hi All, My client has a database (Sybase) in which a table column URL contains a string like- http://www.pjonline.com/cpd/nutrition_ _drugnutrient_interactions The box like un-recognized character is emdash. I need to display the data on the web lets say in a HTML page where box should be decoded somehow to b... 1 Jul 2010 02:23
curl help or other suggestion
I am trying to use register_shutdown_function. Previous to the script shutting down I use curl to grab a website. Basically I want to know if the user has hit the stop button or left the page prematurely. The only problem is that curl runs and finishes its call before the shutdown function is called. Because... 17 Jun 2010 12:19
Date Conversion Problem
PHP newbie here... I have some PHP code writing the date/time into a MS SQL 2000 database like this: date('l jS \of F Y h:i:s A') So the text it writes into the DB is like: Thursday 15th of April 2010 10:13:42 AM The database field is defined as varchar, not datetime...so it's a strin... 18 Jun 2010 08:03
Unit testing in PHP
Hi, What do you use for unit testing in PHP? phpUnit, SimpleTest or any other? Thanks, Vikash Kumar -- http://vika.sh ... 17 Jun 2010 13:26
User's IP Validation
Hi people, I would like to know the best way to perform some kind of validation for an application that I've written. I have a system that ask through an HTML Form some questions to users. I use some cookies to save some information from the user side. However, I would like to implement some code in PHP that w... 17 Jun 2010 11:12
Unknown error with imagecreatefromjpeg() on specific GD/PHP versions.
Hi Everyone, One of my developers is reporting a problem on our Live server but not our devel server. Specifically when someon uploads a photo taken by a KODAK EASYSHARE C813, and that image gets processed by imagecreatefromjpeg(), the function returns false. Our Devel Server Info [this works fine] PHP Versi... 16 Jun 2010 11:04
How could I mix popen() and pcntl_alarm() function ?
Hi, I want to use tail command to tail the file by popen and trigger the function signal() by every 3 secs. Here is my example code: declare(ticks = 1); // Unreachable function function signal($signal) { echo "SIGALRM\n"; pcntl_alarm(3); } pcntl_signal(SIGALRM, "signal"); pcntl_alarm(3); $fpcmd ... 15 Jun 2010 15:26
First  |  Prev |  Next  |  Last
Pages: 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47