You need to set up IP Forwarding on the router/gateway if you want to "see"
your internal server which most likely has a non-routable ip address. Do a
search on this or ask your administrator to configure port 80 to forward
requests to your internal server's ip address, which "must" be static.
Th
Thanks Mikey, had forgotten that. Works a treat.
Mikey wrote:
You could try using forward slashes - they are functionally equivalent from
a PHP point of view...
Mikey
-Original Message-
From: Jon Phipps [mailto:[EMAIL PROTECTED]
Sent: 25 July 2003 19:13
To: [EMAIL PROTECTED]
Subject: [PH
You could try using forward slashes - they are functionally equivalent from
a PHP point of view...
Mikey
> -Original Message-
> From: Jon Phipps [mailto:[EMAIL PROTECTED]
> Sent: 25 July 2003 19:13
> To: [EMAIL PROTECTED]
> Subject: [PHP-WIN] $_POST issues with file paths
>
>
> Here is my
Here is my problem I need to read a file path from this construct
Base Path
however when I read it with
$appath=$_POST["sys_path"];
what I get is
e:\\jon\\site_dev\\php-html
not what I am expecting which is
e:\\jon\\site_dev\\php-html
how can I stop the post method from escaping all m
Derick,
The computer that you are trying to access must have an internet ip to hit
it remotely. Usually these types of things whether you are using a proxy
server, firewall, or router they tend to have it set up so that it is using
ip masquerade so that you will not be able to access it from outsid
>PHP Newbie here. Hoping for some help. Yes, I searched the archives. Cannot
find the answer. Yes, I read the manual. Cannot find the answer. Here's the
>situation...
>Running...
>Win98SE
>PHP 4.3.2 (cgi-fcgi) (obtained from command prompt)
>php.ini is installed in \windows
>php4ts.dll is in \win
php-windows Digest 25 Jul 2003 17:16:33 - Issue 1840
Topics (messages 20899 through 20909):
Re: ascii to utf-16
20899 by: Joel Rees
php_oci8.dll error in ISAPI Mode
20900 by: Rudolf Sianto
20902 by: Philippe Saladin
replacing strings... (hope it isn't too basic...)
Greetings,
PHP Newbie here. Hoping for some help. Yes, I searched the archives. Cannot find the
answer. Yes, I read the manual. Cannot find the answer. Here's the situation...
Running...
Win98SE
PHP 4.3.2 (cgi-fcgi) (obtained from command prompt)
php.ini is installed in \windows
php4ts.dll is
> I am having a couple problems with the following code
> 1) I need to return the value of the radio button (True or False)
You will not get the return value of the radio button until your form has
been posted back to the server.
> 2) I need to wait on the file write until the data is changed
Th
Sorry bout the double post of the radio buttons issue, Outlook express
crashed so it got sent twice.
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I am having a couple problems with the following code
1) I need to return the value of the radio button (True or False)
2) I need to wait on the file write until the data is changed
if ($app_Security){
echo 'Yes','';
echo ' ', 'No','';
}else{
echo 'Yes','';
echo 'No','';
}
$temp= 'Security=' + $va
I am having a couple problems with the following code
1) I need to return the value of the radio button (True or False)
2) I need to wait on the file write until the data is changed
if ($app_Security){
echo 'Yes','';
echo ' ', 'No','';
}else{
echo 'Yes','';
echo 'No','';
}
$temp= 'Security=' + $va
Bobo Wieland wrote:
> Q1 :If I'm for example is going to replace all occurences of "foo" in
> the following sentence with "bar" in case-insensetiv manner how would
> I do it?
>
> "Foo foo foo Foo fOO fOo" should be replaced with "Bar bar bar
> Bar bAR bAr"...
>
> I guess I would need regular ex
Q1:
See the script below
Q2 : n/a
Q3 : n/a
Q4 :
You have to find the insertion point with strpos, and then insert like this
$pos = strpos($mystring,$findme);
if ($pos>0)
{
$leftmost = substr($mystring,0,$pos);
$rightmost = substr($mystring,$pos,strlen($mystring)-$pos);
$new_string =
>
> The procedure entry point OCILobFreeTemporary could not be located in the
> dynamic link library OCI.DLL
> Unknown(): Unable to load dynamic library
> 'c:/php/exetensions/php_oci8.dll' - The specified procedure could not be
> found
Is it a typo ? it is written 'exetensions' instead of 'extensi
Q1 :If I'm for example is going to replace all occurences of "foo" in the
following sentence with "bar" in case-insensetiv manner how would I do it?
"Foo foo foo Foo fOO fOo" should be replaced with "Bar bar bar Bar bAR
bAr"...
I guess I would need regular expressions? Right?
---
I have followed all instruction and default setting in PHP manual, but still
found error when loading php_oci8.dll in ISAP Mode. There were no problem
loading php_oracle8.dll in ISAPI mode or php_oci8.dll in CGI executable mode
(php.exe).
The procedure entry point OCILobFreeTemporary could not be
17 matches
Mail list logo