Hello, This is just a reminder messages to let you know as subscriber of the php-objects mailing list you may be interested about the new site where you may...
php-objects@yahoogrou...
Jul 4, 2004 9:01 am
1445
Hello, This is just a reminder to let you know that the following polls are going on the php-objects mailing list that you are a subscriber. Please do not...
php-objects@yahoogrou...
Jul 4, 2004 9:01 am
1446
I'm trying to move some code to an OO model. In the existing code, i have a config.inc.php file which is `require`d to set up all the needed variables/values...
... have ... [cut] ... constructor, but ... that i've ... Well, using the setup you made, see the following: <?php class config { var $main_cfg = array(); ...
<bigsnip /> ... = '/path/to/install/directory'; ... This afternoon i started to realize the error of my ways yesterday. but this brings it much further,...
Hi, I am trying to install the php5RC3 on my 2k3 server but i am not able to do so, can anyone help in this, I will be very much thankful Indiatimes Email now...
I just completed my preliminary Class to parse csv files. Yes, I know, there a thousands of them out there. I played with them all (or so it seems). After...
hi, i have a problem, suppose our website is hosted with WebHost A. and we want to shift to WebHost B. how can i make sure that the transfer is seamless. i...
... You might try copying all the mail folders by FTP if you have the same web client on both servers. Every ISP I've used in the past 5 years keeps a mail...
Tech @ LDS
tech@...
Jul 12, 2004 7:24 pm
1454
Hi 1) i have a problem with soap i want to use session variable in php with soap 2) also i want to upload a file using web services...
Hi, I am looking for Productivity in PHP for estimate of period based on Calculation of Function Point (FP) (hours for function point or point of function for...
Hello, This is just a reminder to let you know that the following polls are going on the php-objects mailing list that you are a subscriber. Please do not...
php-objects@yahoogrou...
Jul 18, 2004 9:11 am
1457
Hello, This is just a reminder messages to let you know as subscriber of the php-objects mailing list you may be interested about the new site where you may...
php-objects@yahoogrou...
Jul 18, 2004 9:11 am
1458
Dear Friends, I have a little problem ragarding conversion md5 encripted data. please giude me how to decript it. my problem is follows, in my application...
hi, there is no way to decrypt a MD5 checksum. Even though you can't decrypt a MD5 checksum, you can still use it to validate password entered by a user during...
... It is not possible (OK, it is, but not very easy!), you don't decrypt it, you compare it... $match = ( $password == md5($password) ); ... Then you will...
... Think about what you're asking. If you can get the original so can anyone else. MD5 is what is know as a one way algorithm. Urb...
Urb LeJeune
urb@...
Jul 19, 2004 12:36 pm
1462
I'm looking for a class that allows the posting of an article (news) and then allow individual comments on the article. I don't even know what it would be...
Urb LeJeune
urb@...
Jul 19, 2004 12:38 pm
1463
Content Management System (CMS) is the category of the script you want. There are some popular prebuilt ones such as PHP-Nuke and Post-Nuke and many others. ...
Friends, Does a PHP page still holds the session information that was set in the previous page but not in the current page. Will Page 2 pass the pass the...
... PHP holds session in the $_SESSION global array, it's not magically held in the page. Once it's in there, unless you destroy the session, it's in there....
Tech @ LDS
tech@...
Jul 19, 2004 2:33 pm
1466
You need to call session_start(); On any page that you wish to access the $_SESSION global array from. Working from your example below. 1. call session_start()...
... use session_start() at the beginning of all your scripts that need to manipulate session data - this will reload the superglobal $_SESSION array with...
Dear friend!!! Attention, the command needs to be the first command in the code that will use the $_SESSION values. <?php session_start(); ?> Araguaci Carlos...
Some Informations about Sessions: When you start a session, the webserver creates a file in its tmp directory (in most cases). This file is identified by a so...
Rich, Yes, PHP Sessions are maintained through ahref links, however if you are header redirecting to another page on your site, you must specify the sessionid...
Andy Bartel
andy@...
Jul 19, 2004 8:26 pm
1471
Sorry but there is nothing I can do about Eu. smshuja <smshuja@...> wrote: hi, i have a problem, suppose our website is hosted with WebHost A. and we...
I'm newbie I'm afraid I can't help.Please send me no more questions. Eu. gpldeveloper <gpldeveloper@...> wrote: Dear Friends, I have a little problem...
md5 is one way encryption and cannot be reversed. Typically when hashing passwords, the hashed password is stored in the database and a user's entry during...