Re: [PHP] Need libmcrypt.dll for Windows PHP 4.3.9

2005-04-09 Thread HarryG
Got it. Thanks. "Computer Programmer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Go to http://ftp.emini.dk/pub/php/win32/mcrypt/ > > On Apr 9, 2005 2:05 PM, HarryG <[EMAIL PROTECTED]> wrote: > > Need libmcrypt.dll for Windows PHP 4.3.9. Can

[PHP] Need libmcrypt.dll for Windows PHP 4.3.9

2005-04-08 Thread HarryG
Need libmcrypt.dll for Windows PHP 4.3.9. Can anyone send it to me? Thanks HarryG

[PHP] Re: Retrieve URL of website

2005-04-01 Thread HarryG
Thanks guys. "HarryG" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hi, I want to retrieve the complete url in my php script. How can I do this? eg. www.mysite.com/mydirectory/mypage.php Result should either be www.mysite.com/mydirectory/mypage.php or /mydire

[PHP] Connection to Two databases simultaneously

2005-04-01 Thread HarryG
= mysql_query($getaccount); $get = "SELECT * FROM useraccount"; //UserAccount table is present in DATABASE. $result = mysql_query($get); There is no problem with the connection. but I need to query tables in both databases. I know you need to use link identifiers, but have had no luck in getting it to work. Appreciate your help. Thanks. HarryG

[PHP] Retrieve URL of website

2005-04-01 Thread HarryG
Hi, I want to retrieve the complete url in my php script. How can I do this? eg. www.mysite.com/mydirectory/mypage.php Result should either be www.mysite.com/mydirectory/mypage.php or /mydirectory/mypage.php Thanks in advance HarryG

[PHP] Re: E-mails with mail() as UTF-8

2005-01-07 Thread HarryG
Possibly the relay server can not send messages in the UTF-8 format so it has to convert the message. Try to install a local mail server on your pc smtp server in IIS on Windows or Postfix in linux and then try use your local server to delivery the mail rather than the isp's mail server "Kimmo Al

Re: [PHP] Total Server Sessions

2005-01-03 Thread HarryG
How do I have database driven php sessions. Any examples?? "Greg Donald" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Mon, 3 Jan 2005 23:02:19 +1100, HarryG <[EMAIL PROTECTED]> wrote: > > Is there an easier way to count the total number o

[PHP] Re: Calendar Script

2005-01-03 Thread HarryG
Cool.. just tried your script. I might try to convert it to Smarty template compatible code, in my spare time. Have you used Smarty Templates?? "Joe Harman" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hello, I just finished writing a basic calendar script... I wanted to pass

[PHP] Total Server Sessions

2005-01-03 Thread HarryG
hanks HarryG -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Register Globals=ON

2005-01-03 Thread HarryG
Which process is better to use in PHP? Having register_globals=on and referring to variables as if($name){} or using $_GET & $_POST statements like if(isset($_GET['name']))? What is the main advantage/disadvantage in both cases. Thanks HarryG -- PHP General Mailing List (http