You probably don't have the MS SQL extension loaded. Uncomment in in the
php.ini file.
Mike
- Original Message -
From: "chris" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, February 06, 2002 6:23 AM
Subject: [PHP-WIN] accessing mssql2k from
At 09:45 PM 2/11/2002 -0800, Mike wrote:
>I am creating a page with a form on it. I want it so that when people click
>submit, I want the information from the form to be emailed to me. Is there a
>way I can do this with normal JavaScripting or even plain HTML or would I
>have to u
s. One button
is the "default" submit button (i/e the one that gets highlighted when you
click within the form), the rest must be clicked to be submitted. For
these, you could use their name/values.
-Mike
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ith all the form info and use the php
mail() function to send it. See the manual for more on mail().
-Mike
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ention for their
names. Then after submitting, use that same naming convention to look at
all the names and see which ones have been set, and those are the ones that
are checked. The "values of all the checkboxes which are checked" are
always submitted. That's how forms work..
or 1
$view = ${$theuserdata}[1]; // null or 1
$priv = ${$theuserdata}[2]; // null or 1
}
That would do what you want to do. Whether there's a simpler way, I dunno. :)
-Mike
At 02:33 PM 2/18/2002 +, Sandeep Murphy wrote:
>ok...
>
>I am creating a tree of checkboxes
I should have been more specific in some of my pseudocode:
Update
View
Priv
That is, the '$userid's and the array indexes '[x]' they are followed by
are separate in the code.
-Mike
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit
I am having a problem with the extension php_gd.dll
When the script call for php_gd.dll the server console shows
Warning
Unable to load the dynamic library 'C:\WINNT\system32\php_gd.dll'-
The specified procedure could not be found.
Info;
Win2k Server
Service Pack 3
PHP 4.2.3
extension_dir="c:
The first step is to obviously install PHP and have it associated with .php
files on your system and create your script that works 100% when you just
double-click on the file.
After that's working, create a .bat file that makes a call to the PHP
executible (C:\PHP\php filename.php).
Then, create
ng it's going to
run and other options. It's just a lot more stable.
Not to mention that if you poorly write the PHP script - it will consume A
LOT of memory!
-Mike
-Original Message-
From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED]
Sent: Tuesday, March 25, 2003 8:11 AM
To:
You can easily do that with JavaScript.
if (document.location.href != "index.html"){
document.location.href = "index.html";
}
My syntax might be screwy (haven't done JavaScript in a while) but you get
the idea.
-Mike
-Original Message-
From: Wade [mail
In the script that you use to actually enter the information into your
DB simply output HTML headers and print what you want to the screen.
A basic example:
Thank you for your submission...";
?>
-M
-Original Message-
From: Oliver Steimer [mailto:[EMAIL PROTECTED]
Sent: Wednesday, Jun
, but screwed up when I
tried to access it from the DNS. The test page loads, then does a redirect
to "The page cannot be displayed."
Any help would be appreciated.
- Mike Goggin
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
try
$_SERVER["PHP_SELF"]
Mike
"Gabriel_k" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Oh, I accidently typed PHP_INFO, but I DID USE PHP_SELF, with and without
a
> dollar sign, and none worked. I tried the same with PATH_INFO.
>
>
So far everytime I've tried to build the CVS code, it dies when trying to
build the module for SQLite. How do I disable SQLite in the Makefile, I
tried --disable-sqlite, but that didn't do anything. I'm using Cygwin
right now to do the building, but I have access to VC++ 6.0 and 7.0.
Also when I f
t you're doing to do it right, but it's a lot
more reliable and offers better security and flexibility.
My $.02
-Mike
-Original Message-
From: Jon Phipps [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 02, 2003 3:58 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Re: Apache or IIS
You might try something like this
if !isset($value) {
$value = 1
}
"Thomas Edward Lawrence" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> I have three pages :
>
> page1.php
> session_start() ;
> session_register("value") ;
> $value = 1
> ?>
>
> page2.php
> session_start() ;
That depends on you actual code.
There's the header(location: http://url.to.page/); command that you could
use, but if you're already starting a session, I believe that you can't use
the header() command since the session already sends the header.
Though you could always include(); the member_are
If you're positive that it's the server(s), then why not take another
machine, install PHP & Apache, port the code and confirm that it's
code-independant?
-M
-Original Message-
From: Francesco [mailto:[EMAIL PROTECTED]
Sent: Monday, September 22, 2003 8:09 AM
To: [EMAIL PROTECTED]
Subjec
I can think of two ways to probably fix this -
1) If you want to get rid of the error you should be able to comment the
line in your php.ini file:
extension=php_imap.dll
2) If you look at your extension_dir directive in the php.ini file, I'm
guessing it says something like
extension_dir = d:\
And is that DLL in the folder specified?
-Original Message-
From: Gareth Thomas [mailto:[EMAIL PROTECTED]
Sent: Monday, September 22, 2003 9:36 PM
To: Mike Brum; [EMAIL PROTECTED]
Subject: Re: [PHP-WIN] upgrade imap dll problem
Mike,
extension_dir does point to the correct directory
Here's something I'd do:
$tmp = 1;
for(loopconditions){
[do stuff];
if($tmp > 1){
iterations is not the first time through
} else {
this is the first iteration of the loop
}
$tmp++;
}
-M
-Original Message-
From: Gerardo Rojas [mailto:[EMAIL PROTECTED]
Sent: Thursday, S
I guess this all depends on how you're writing to the file. Without code,
I'm not sure what the specific problem is.
One way to do this would be to read the file into an array and replace the
line in that array. Then, write the newly constructed array to file. This
way, at write time, the former d
Now, if you put a .htm, .txt, .jpg or other file (anything NOT .php), then
do you see those files when placed in the same directory?
-M
-Original Message-
From: Jim [mailto:[EMAIL PROTECTED]
Sent: Friday, September 26, 2003 2:28 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] page cannot be
Hi,
I have 3 dynamic arrays which is related data pulled from a mySQL database,
the first being day $days[],second being amount $amount[] and third being a
specific code $code[]. What I need to do is display a table with 1 to 15 in
the left hand column (days) but where the array $days[] contains a
Hi,
I have 3 dynamic arrays which is related data pulled from a mySQL database,
the first being day $days[],second being amount $amount[] and third being a
specific code $code[]. What I need to do is display a table with 1 to 15 in
the left hand column (days) but where the array $days[] contains a
; escribió en el mensaje
news:[EMAIL PROTECTED]
> Would something like
>
> SELECT day, SUM(amount) AS amount_sum, DISTINCT(code) AS code
> FROM
> WHERE
> GROUP BY day,amount _sum, Code
>
> be usefull for you? Or do you already do this?
>
> -Original Message-
> Fr
ing a proper answer:
> is it possible to have different codes on the very same day?
>
> -Original Message-
> From: Mike Quinn
> To: [EMAIL PROTECTED]
> Sent: 29-9-2003 7:11
> Subject: Re: [PHP-WIN] Matching arrays to build tables
>
> Hi Svensson,
>
> Thanks fo
Hi George,
Just at a quick glance it might be to do with the Date(); Remove that
clause and see what happens. I could be wrong.
Rgds,
Michael
"George Pitcher" <[EMAIL PROTECTED]> escribió en el mensaje
news:[EMAIL PROTECTED]
> Hi,
>
> I'm having a problem with the following query (ODBC on M$
I got a very modest email from Bill Baron with the following code which
works absolutely perfectly even though Bill never tested it! (Slick!).
Thank's a million for that Bill and also thanks to Svensson for all the
help - very much appreciated. Here is the code which I modified ever so
slightly to
Hi Morton,
Remove or exit(); on the mysql_select_db("sampdb"); and that should work for
you!
Regards,
Michael Quinn
"Morten Gulbrandsen" <[EMAIL PROTECTED]> escribió en el mensaje
news:[EMAIL PROTECTED]
Thanks,
I did, and now I can restart Apache.
Here is my simplest PHP script.
And
Sorry I didn't mean work literally, but it should return the error you are
looking for to describe what's up. Likewise with the other lines remove the
or exit(); in case you have a typo.
"Mike Quinn" <[EMAIL PROTECTED]> escribió en el mensaje
news:[EMAIL PROTECTED]
I am trying to create a library in Delphi 6 for IIS/PHP, does anyone know
where I can find documentation about this ?
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
You need to start the session.
sesstion_start();
Read up - http://us3.php.net/manual/en/function.session-start.php
-Original Message-
From: Disko_kex [mailto:[EMAIL PROTECTED]
Sent: Sunday, October 05, 2003 12:24 PM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] Session prob
Why isn´t
Assuming this is tied into your other problem (which I read first), then the
problem here is that it appears you're on a Windows machine and you don't
have php.ini set up correctly.
You need to set the session.save_path in php.ini to point to a directory
that exists. Mine, for example is this:
se
Please refer to the function entry for imagecreatefromgif(). You'll note
that it's been a function that's been discontinued from GD due to copyright
issues.
http://www.php.net/manual/en/function.imagecreatefromgif.php
-M
-Original Message-
From: Guus Bil [mailto:[EMAIL PROTECTED]
Sent:
>Have somebody any idea how I could do something like that?
You're somewhat out of luck, as the chain of events in your typical HTTP
transaction looks something like this...
>[time]->
client request received from browser
|
+-
Do you have register_globals on?
If not, try this:
Your username = " . $HTTP_GET_VARS['username'] . "";
echo "Your password = " . $HTTP_GET_VARS['password'] . "";
?>
Regards
Mike
-Original Message-
From: Hasan Barýþ Karayel [m
Hi Alan,
You have to set the headers to send HTML emails (that could be it!)
$header = "MIME-Version: 1.0\r\n Content-type: text/html;
charset=iso-8859-1\r\n";
$address = "[EMAIL PROTECTED]";
$subject = "HTML Email";
$content = "stuff";
mail($address, $subject, $content, $header);
"Alan Mc
the annoying problem
would be much appreciated!
Cheers,
Mike.
This is code of 'cookies.php':
Cookie test script
// for debug
//nothing appears
Type value:
__
Do you Yahoo!?
New Yahoo! Photos
It's very possible that they're not letting you relay through them since
you're not providing any authentication for that mail server but just trying
to send (as far as it can tell) "random mail from an unknown sender".
The mail server can't tell the difference from your script from that of any
ot
Can you be a bit more clear on "calling a function from a hyperlink"? If
you're referring to that in the JavaScript sense, then no.
If you mean "how do I submit a form from a text link" then that's also done
through JavaScript, but it still POSTs/GETs a page on your server and you
return content.
It seems to me like you did all the testing you need to and that the problem
is F-Secure.
Why not give them a call and ask support what's going on since it's
prohibiting the execution of one of your executables?
Beyond that, I work with anti-virus software - there has to be a way to
exclude direc
Not being able to replay is a common problem with VCR's. Please take yours
to a local repair shop or, if it's still under warrantee, you should be able
to send it back to the manufacturer and get free repairs for only the price
of shipping.
Good luck.
-Original Message-
From: Svensson, B
the .php file needed.
(basically the same page was loaded again)
Is there a fix for this? BTW I am using XP
Thanks for any help!
Cheers,
Mike.
__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
--
PHP
I running php on a win2k/iis box in a intranet enviroment. I recently
came across two dll's which I thought I might be able to use (in my
windows enviroment): php_ntuser.dll and php_iisfuncs.dll. I found them
on http://snaps.php.net/win32/PECL_UNSTABLE/ and
http://kromann.info/pecl.php. Goog
hat..
Can anyone fill me in on what the proper string formatting function or
functions are to do this?
Thanks a lot!
-Mike Flynn
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Hello: My name is Mike and I have little problem.How can I get a connection
to an ORACLE8i-database with php4?
I can't find any documentation about it.
Regards
Mike
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e
ughly) to HTML? Not a whole HTML page, like as if you
exported it to HTML from Word, just the text and its properties.
If anyone knows of anything like this, it would be great.
Thanks!
-Mike Flynn
Come the millennium month 12, in the home of the greatest power,
the village idiot will come f
ot;\n";
?>
Note that there's no blank lines between the and
tags besides those present in the $desc_long string that was retrieved from
the database. That avoids adding undesired blank lines and spaces.
-Mike
Come the millennium month 12, in the home of the greatest power,
the
I am generating some javascript code in PHP and I need to do a javascript escape() in
my PHP code so that the javascript can unescape() it on the client. I've looked though
the online manual for PHP an can't find anything that helps so far. I think my only
problem is line ends so maybe I only n
very much for all help!
-Mike Flynn
-=- Mike Flynn - Burlington, VT -=-
[EMAIL PROTECTED] http://www.mikeflynn.net/ * Give blood *
Born to see two thousand years
of man's effect upon the planet [Killing Joke]
Extinction seems to be a plausible risk
--
PHP Wi
or 10004:
EventID 10004 Source DCOM DCOM got error
"Logon failure: unknown user name or bad password. " and was unable to logon
\IWAM_TEK1 in order to run the server:
{3D14228D-FBE1-11D0-995D-00C04FD919C1}
same happens with an installation of IHTML or other script-server dll....
who
ormal part using .htaccess
security. If you do not have any .htaccess restrictions anywhere on your
site you can leave doc_root undefined.
who can help?
thank you
mike
--
C-TEK Computer
Bergstrasse 36
CH-5430 Wettingen
phone & fax 056 426 04 01
-
very much for all help!
-Mike Flynn
-=- Mike Flynn - Burlington, VT -=-
[EMAIL PROTECTED] http://www.mikeflynn.net/ * Give blood *
Born to see two thousand years
of man's effect upon the planet [Killing Joke]
Extinction seems to be a plausible risk
--
PHP Wi
't even involve a file upload field, just the
enctype="multipart/form-data" part of the form.
Can anyone speculate at all at what might be causing this? I really
appreciate all help.
-Mike Flynn
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROT
e binary info of the image, sounds simple
>enough. Although, I can get php to open the image and read the (binary)
>contents into a string, can someone help me.
>
>Thanks.
-=- Mike Flynn - Burlington, VT -=-
[EMAIL PROTECTED] http://www.mikeflynn.net/ * Give blood *
Bor
ot;);
if(@mysql_num_rows($res) != 0) {
$verified_user = $userid;
session_register("verified_user");
}
}
I've never seen that before and am curious what it does. I've seen it
before function calls, but never before variables.
Thanks!
-Mike
-=- Mike Flynn - Burl
n any
variable that may or may not be set.
-Mike
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
I have downloaded mysql-4.0.18-win, php-4.3.6, webcalendar and apache2
webserver
I am retrieving files from my server so I know the webserver is correct
but when I try to access the day.php file all I am getting is the code
to show up on the screen.
I have tried to add to the http.config file
I was having a performance problem when running any php pages on IIS 6, the
problem was that the page would load in the browser extremely slow, running
a simple loop would take ages to output anything. I didn't get into testing
much to find out where the speed issues are exactly but I found a fix f
I believe this is the same problem I found a fix for in thread "php
performance on IIS 6" (23749)
If you're running in isapi mode turn on output-buffering, I haven't looked
into this fully, and its weird that it works fast from the local machine
(had the same issue)
--
PHP Windows Mailing List
) Questionnaire 1(Open Source Development):
http://web.singnet.com.sg/~mikecck/opensource/WebFormA1.htm
3) Questionnaire 2(Open Source and IT/IS Cost):
http://web.singnet.com.sg/~mikecck/opensource/WebFormB1.htm
Thank you for your time.
Mike Chan
Student
Curtin University of Technology
--
PHP
not access MySQL. The .dll is in the 'ext' folder and this is
correctly named in the php.ini file. I can see the file, and I have checked the
wording to make sure I have no typos.
This is driving me barmy - could someone give a bit of advice please to get me
out of this one?
Cheers,
Mike
console window the
php executes perfectly.
I'm guessing its some sort of security issue but haven't managed to
track it down yet. Has anyone got any ideas?
System is XP Professional and PHP 5.0.3
Mike Marshall
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe,
Hi
What is the easist way to read an email account from php?
Thanks
Mike
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Thanks! That was what I was looking for!
Mike
Mike wrote:
Without using someone else's code or a pre-existing class, take a read
through this: http://us3.php.net/manual/en/ref.imap.php
-M
Hi
What is the easist way to read an email account from php?
Thanks
Mike
--
PHP Wi
John Smith wrote:
I am able to compile PHP, but I am trying to create an extension (
following zend's hello world tutorial ) and the configure step will not
recognize my enable command.
I'm working with: PHP5.1 and have tried both win2k3/vs.net and
winxp/vsc++6 with the exact same results.
just a guess, are you sure you didn't transpose the first 2 letters of
the class? should it be DbConnect() and not BdConnect() ?
now that i think about it you would probably get a different error if
the class didn't exist though.
Marcos Nagamura wrote:
Hi,
sorry about the off-topic.
With
ript runtime error:
'PHP_UNICODE_SHARED' is undefined
config command: cscript /nologo configure.js --enable-snapshot-build
Any insight would be greatly appreciated.
Thank you,
Mike Milano
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Mike Milano wrote:
Platform: WinXP Pro
Tools: VS7 CL Compiler & MS SDK Win2k Build Environment
Version: 5.1.2 from CVS
I get the same result with both compilers. When I try to configure the
build, it throws this error:
Enabling extension ext\tokenizer
C:\work\php-src\configure.js(99
Karuna wrote:
Hi. I've done some changes to php.ini and even after restarting IIS, these
changes aren't detected. I can't restart the machine itself so is there any
other way to fix this? I remember on WinXP and apache I had to restart my PC
to fix certain issues but I can't restart this as it
Alex Blundell wrote:
HI, I have been searching the internet for days trying to find a way of
getting the windows username (%username%) of the current logged on user and
submitting it, along side some other information (entered into the form by
the user), to a MysQl database. This will enable me
Zend Optomizer 2.6.2 works ok when I use the public release, but when I
try to use a custom build, I get a pretty vague exception when
php-cgi.exe is launched:
php-cgi.exe - Application Error
The instruction at "0x7c98fea" referenced memory at "0x0010". The
memory could not be "written".
Thank you Edin,
So this is just a VC++7 issue? Do you know of any other compilers that
work OK for compiling PHP on Windows?
I have access to VC++6, but I'm just curious if cygwin or other methods
of compiling would be successful too.
Edin Kadribasic wrote:
Hi Mike,
You'
nyone have a solution for this?
Thanks,
Mike
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I found the problem, there are some libraries required. These are documented on
www.php.net.
-Original Message-
From: Mike Craig [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 12, 2006 11:47 AM
To: php-windows@lists.php.net
Subject: [PHP-WIN] Unable to load php_ldap.dll
I have been
With PHP 5.1.2, FastCGI works fine.
I downloaded the PHP 5.1.4 binaries and replaced my 5.1.2 install. I now
get the following error when I load a PHP page.
***
HTTP/1.1 503 Server too busy Server: Microsoft-IIS/5.1 Date: Wed, 10 May
2006 17:09:58 GMT Connection: close Content-Type: text/html
Could anyone verify that isapi_fcgi.dll works with PHP 5.1.4 for them?
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Edin
Mike Milano wrote:
Could anyone verify that isapi_fcgi.dll works with PHP 5.1.4 for them?
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
y with unicode), Product_Season will be empty. However, if I
SELECT Product_ID, Product_Season, Short_Description -- I'll get the
Product_Season. Short_Description is empty in both cases (even if it's
not empty when viewing with SQL Query Analyzer).
Has anyone seen this behavior or have any ideas as to what I should try?
Thanks,
Mike
en Olmsted [mailto:[EMAIL PROTECTED]
Sent: Monday, October 09, 2006 12:55 PM
To: Mike Matz; php-windows@lists.php.net
Subject: re: SPAM-LOW: [PHP-WIN] Unicode data w/ PDO DBLIB, MSSQL
I think I have reported the problem you are having with the odbc and pdo
and sql server under bug 38834.
http://bu
e CVS as of last night. Thanks for the quick responses
and fix!
-Original Message-
From: Vincent DUPONT [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 10, 2006 4:14 PM
To: Frank M. Kromann; Mike Matz
Cc: [EMAIL PROTECTED]; php-windows@lists.php.net
Subject: RE: [PHP-WIN] RE: SPAM-LOW:
Could it be the FTP server throttling repeated connects from the same
IP? Have you tried on different FTP server software?
-Original Message-
From: Alek Silverstone [mailto:[EMAIL PROTECTED]
Sent: Friday, December 08, 2006 8:01 AM
To: php-windows@lists.php.net
Subject: [PHP-WIN] ftp_con
Is php5 backwards compatable with php4 scripts ?
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
quot;,
"SET character_set_filesystem = utf8",
Is there something similar I need to do with MSSQL? Is there an option
in the PDO ODBC driver I need to set somehow? I'm guessing there's
probably a simple solution but thus far I've been unable to find
anything. Any help or insight would be greatly appreciated!
Thanks,
Mike
tinue using the PDO
interface for the majority of my code.
Hope this helps someone in the future :)
-Original Message-
From: Mike Matz [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 14, 2007 11:54 AM
To: php-windows@lists.php.net
Subject: [PHP-WIN] Japanese text in MSSQL database
Hello,
Hi
I was wondering whether anyone can help me.
I'm currently having problems with a windows server running PHP using the
isapi_fcgi.dll written by Shane Caraveo.
Over the past couple of weeks the PHP application running on the server has
begun to become unresponsive and the ISAPI extension req
I have a very strange problem. If anyone has an insight please let me
know.
When my laptop is docked in my office I have no problem using
mssql_connect to the SQL server running on localhost. When I take my
laptop home I get the following error:
Warning: mssql_connect() [function.mssql-co
Greetings. I am trying to get PHP installed and working on a Windows
server - Windows Standard 2007. I've downloaded and installed PHP 5.2.9.
Problem is I don't know how to use this at all. My web server is Apache
2.2 - my database is Mysql.
I selected the Apache module 2.2 during the install, and
n/, it can start as a service and all that
>
>
>
>
>
>
>
>
> 2009/5/28 Mike Kay
>
> Greetings. I am trying to get PHP installed and working on a Windows
>> server - Windows Standard 2007. I've downloaded and installed PHP 5.2.9.
>> Problem is I don't
WAMP installed. PHP still not working.sigh
> have you looked at WAMP ? theres Xammp too but never really liked it
> myself
> much ...other swear by it though
>
> Look at WAMP :
>
> http://www.wampserver.com/en/, it can start as a service and all that
>
>
>
Thank you all for your input. Let me be specific about what this server
I'm building is to do. It's MAIN purpose is to use as a Bugzilla machine.
Bugzilla requires a database, a Web server, ActivePerl and a mail server.
The Bugzilla docs stated the preferred platforms as Mysql, Apache - and
along
Hello everyone
anyone can advise me of the best way to install php5.2 / apache/ mysql on
windows 2008 for a production server ?
really grateful
thanks
; when scripting with Javascript.
> What is the PHP equivalent to unescape to remove space
> characters (%20)
> in HTML output,
Try urldecode() (see http://www.php.net/manual/en/function.urldecode.php) or
rawurldecode() (see http://www.php.
201 - 295 of 295 matches
Mail list logo