2006/5/23, Dotan Cohen <[EMAIL PROTECTED]>:
On 5/23/06, Martin Alterisio <[EMAIL PROTECTED]> wrote:
>
> If that's the case, why don't you just use the "export as web page" or
"save
> as web page" tools of MS Word (if you don't have it a
2006/5/23, Jochem Maas <[EMAIL PROTECTED]>:
my 2cents
Martin Alterisio wrote:
> 2006/5/23, Dotan Cohen <[EMAIL PROTECTED]>:
>
>>
>> On 5/23/06, Martin Alterisio <[EMAIL PROTECTED]> wrote:
>> >
>> > If that's the case, why don'
Hi everybody,
I'm new to the list and also new to php, I hope I can learn many
things from here.
My first doubt is the following: I'm trying to create a small monitor
system, just to suit my needs in monitoring some services in my application.
I've found some functions that return to me
2006/5/27, Jochem Maas <[EMAIL PROTECTED]>:
2. any include file that does contain code that runs on inclusion contains
something
like the following as the first line of code:
if (!defined('MY_APP_IS_SETUP')) die('try
http://'.$SERVER['SERVER_NAME'].'/');
An enhancement to this strategy could
return false;
}
}
}
On 5/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
On Thu, 25 May 2006, Phil Martin wrote:
> Hi everybody,
>
> I'm new to the list and also new to php, I hope I can learn many
> things from here.
> My first doubt is
Hi everyone,
I've made a very basic and small function to suit my needs in
monitoring some hosts services. I've noticed that the script is a little bit
slow because of the number of hosts and services to monitor. Is there a way
to execute my function servstatus(); in parallel with every hos
Hi everyone,
I've made a very basic and small function to suit my needs in
monitoring some hosts services. I've noticed that the script is a little bit
slow because of the number of hosts and services to monitor. Is there a way
to execute my function servstatus(); in parallel with every hos
$endTime = time();
$timeDiff = $endTime - $startTime;
if ($timeDiff >= $timeout) {
fclose($socket);
return true;
} else {
fclose($socket);
return false;
}
}
}
Thanks in advance
Felipe Martins
On 5/30/06,
2006/5/30, Philip Thompson <[EMAIL PROTECTED]>:
Are you checking what the user is sending inside $_GET['page']? If not, your
system is vulnerable to a remote file injection.
fast, or there is
no way to have all my servers services checked in parallel.
Thanks in advance.
Felipe Martins
On 5/30/06, Jochem Maas <[EMAIL PROTECTED]> wrote:
Phil Martin wrote:
> Sure, sorry about that. I have a function that tells me if the host is
DOWN
> or UP. I want to r
Sorry for the OT, but this is PHP output anyway :-)
I have a bunch of code to input and modify data through an HTML form. When
I modify the options, some are in text, others
in textarea, and some are in select options. Now wat I did is make the
current value be the selected one, but my browser
On Thu, 01 Jun 2006 13:06:24 -0600, John Meyer <[EMAIL PROTECTED]> wrote:
> Martin Marques wrote:
>> doesn't seem to get it right. Here is the HTML output:
>>
>>
>> Profesor titular
>> Profesor asociado
>> Profesor adjunto
>> Jefe de traba
2006/6/2, George Babichev <[EMAIL PROTECTED]>:
Awesome, thank you so much! It works!
On 6/1/06, Chris <[EMAIL PROTECTED]> wrote:
>
> George Babichev wrote:
> > Ok, I sent it to everyone and you. Now can you answer my question
> please?
> > I type in
> > 1
> >
> >
> >
> > 2
> > into my form in t
2006/6/4, Niels <[EMAIL PROTECTED]>:
Hi,
I have a set of nodes. Each node has a parent and so the set can be
thought
of as a tree. I want to show that tree somehow on a webpage, served by
PHP.
I cannot use Dot/Graphwiz for various reasons. What I'm looking for is an
output of DIVs or tablecell
2006/6/4, Niels <[EMAIL PROTECTED]>:
Hi!
On Sunday 04 June 2006 18:13, Martin Alterisio wrote:
[snip]
> I had a similar problem that, although it was with a binary tree, it can
> be used with your tree. PHP doesn't like too much the use of recursion,
> but this time recurs
2006/6/4, Rasmus Lerdorf <[EMAIL PROTECTED]>:
tedd wrote:
> Hi gang:
>
> Here's your opportunity to pound me again for not knowing the basics of
php.
>
> I vaguely remember something like this being discussed a while back, but
can't find the reference.
>
> In any event, if one uses --
>
> for ($
2006/6/4, Rasmus Lerdorf <[EMAIL PROTECTED]>:
Martin Alterisio wrote:
> 2006/6/4, Rasmus Lerdorf <[EMAIL PROTECTED]>:
>>
>> tedd wrote:
>> > Hi gang:
>> >
>> > Here's your opportunity to pound me again for not knowing the basics
of
>
2006/6/4, Rasmus Lerdorf <[EMAIL PROTECTED]>:
Martin Alterisio wrote:
> Still:
> anything < ++anything
> should be true, or at least that's what they taught me on abstract data
> types design, and I think they're right (at least this time)
In loosely typed la
2006/6/5, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
This is just one of those cases where the designers had to make a
judgement call on how things were going to operate. It makes sense if you
look at the two things separately (incrementing vs string 'greatness'
evaluation) and makes sense that how
2006/6/5, Larry Garfield <[EMAIL PROTECTED]>:
On Monday 05 June 2006 14:56, Martin Alterisio wrote:
> 2006/6/5, [EMAIL PROTECTED] <[EMAIL PROTECTED]>:
> > This is just one of those cases where the designers had to make a
> > judgement call on how things were going to
2006/6/6, Larry Garfield <[EMAIL PROTECTED]>:
On Monday 05 June 2006 21:12, Martin Alterisio wrote:
> > As for the increment, it actually would never have occurred to me to
++ a
> > string before this thread, honestly. :-) However, what it appears to
be
> > doing (
2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
On Tue, 2006-06-06 at 00:01, Martin Alterisio wrote:
> > Because defining ++ and < and > in such a way as to make them "behave
like
> > numbers" would have made them not work for alphabetizing. A string is
a
>
2006/6/6, Barry <[EMAIL PROTECTED]>:
Martin Alterisio schrieb:
> is it really worthy the functionality supplied with the string ++
operator
> as it is? I don't see its usefullness yet.
guess you want to order something by "name" not by number which might be
false
2006/6/6, Rasmus Lerdorf <[EMAIL PROTECTED]>:
Martin Alterisio wrote:
> You're right about ++ operator not to be considered a math operator, my
> mistake. What I should have said is that the usual connotation and
expected
> behaviour of ++ and the comparison operators
2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
On Tue, 2006-06-06 at 09:46, Martin Alterisio wrote:
> 2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
>
> > In C++ they do leave it to the coder, and well, we all know what a
mess
> > it can be deciphering overloaded
2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
On Tue, 2006-06-06 at 13:11, Martin Alterisio wrote:
> 2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
> >
> > On Tue, 2006-06-06 at 09:46, Martin Alterisio wrote:
> > > 2006/6/6, Robert Cummings <[EMAIL PR
2006/6/6, tedd <[EMAIL PROTECTED]>:
If php is supposed to be open source, doesn't that mean that people can
voice their opinion on what they observe and expect?
I second that. I believe being open-source doesn't mean "Yay, it's free!"
but "Cool, someone is listening to us!"
2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
On Tue, 2006-06-06 at 14:06, Martin Alterisio wrote:
> 2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
> >
> > > > You must have missed this post:
> > > >
> > > > http://m
2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
On Tue, 2006-06-06 at 14:31, Martin Alterisio wrote:
> 2006/6/6, Robert Cummings <[EMAIL PROTECTED]>:
> >
> > On Tue, 2006-06-06 at 14:06, Martin Alterisio wrote:
> > > 2006/6/6, Robert Cummings <[EMAIL PR
2006/6/7, Jochem Maas <[EMAIL PROTECTED]>:
hi people,
I've been STFW till I'm blue in the face (so lack of oxygen might be
problem atm) but can't find any [decent] info on generating/transforming
existing
HTML so thats it's compatible with the subset of tags that are supported
by Flash (apparen
2006/6/9, Jonas Rosling <[EMAIL PROTECTED]>:
Is there any way you can skip for example the first 4 array
values/posisions
in an array no matter how many values it contains?
Thanks // Jonas
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
2006/6/15, weetat <[EMAIL PROTECTED]>:
Hi all,
I have SQL query , for example , Select country , name from
tbl_chassis order by country.
The problem of the sql statement is that , if there are empty value in
country field , it be sorted first .
How to do sorting the empty value last
? I
2006/6/15, weetat <[EMAIL PROTECTED]>:
Hi all ,
I was using PEAR:HTTP_Upload to upload file in php 4.3.2.
Is ok , however i need to display some sort of progress monitor to
the user because some file is very large and took some times to upload.
I need to inform the users to uploading is i
2006/6/16, tedd <[EMAIL PROTECTED]>:
Hi gang:
So, there is NOT a way for one running php-application to call another and
have it run while having the parent quit?
For example, program "a" runs and presents the user with a web page. The
user responds in some fashion (i.e., enters text) and clic
Yesterday when reading some doc on PHP I noticed the $_REQUEST predefined
array, which looked like a solution to having to check in GET and POST
data (I'm not sure if it will really have an impact on my program yet).
The thing is, I also saw this description:
Variables provided to the script v
On Sat, 17 Jun 2006 15:01:23 +0200, "Satyam" <[EMAIL PROTECTED]> wrote:
> In general, user input should never be trusted. Someone once told me that
> if you ask for yes or no, you should always validate for yes, no and don't
> know (of course, this was before windowed environments where the users
On Sat, 17 Jun 2006 14:25:30 -0400, Ben Ramsey <[EMAIL PROTECTED]> wrote:
> On 6/17/06 9:30 AM, David Tulloh wrote:
>> Martin Marques wrote:
>>> Yesterday when reading some doc on PHP I noticed the $_REQUEST
>>> predefined array, which looked like a solution to
On Sat, 17 Jun 2006 09:55:05 -0400, tedd <[EMAIL PROTECTED]> wrote:
> At 8:52 AM -0300 6/17/06, Martin Marques wrote:
>>Yesterday when reading some doc on PHP I noticed the $_REQUEST predefined
> array, which looked like a solution to having to check in GET and POST data
>
2006/6/18, Peter Lauri <[EMAIL PROTECTED]>:
Best group member,
I have a variable $content that is taken from a database. It contains line
breaks and the $content will be posted with line breaks.
I need to use this to insert this into a JavaScript function:
$output = 'writeRichText(\'rte
php/apache/mysql packages for Windows, Mac OS X
and Linux.
Johan Martin
Catenare LLC
534 Pacific Ave
San Francisco, CA. 94133
Mailing Address:
268 Bush Street #2826
San Francisco, Ca. 94104
Phone: (415) 834-9802
Fax: (415) 294-4495
http://www.catenare.com
AOL: catenarellc
Yahoo
A sad poem of an algorithm where solitude brought excessive use of cpu
cycles and memory allocation for redundant data (it copied over and over
again the same image till all memory was filled with it)
--
$timeWaiting = 0;
while (!$you->near($me)) {
$me->thinkAbout(
2006/6/26, Ligaya Turmelle <[EMAIL PROTECTED]>:
Martin Alterisio wrote:
>
>
> A sad poem of an algorithm where solitude brought excessive use of cpu
> cycles and memory allocation for redundant data (it copied over and over
> again the same image till all memo
"cms-core" file with some individual settings. Is there better idea?
I appreciate your discussion on this topic.
Martin Zvarik
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
his free system would be fair.
So, I will stick with separate databases for each user + central
databases used for searches etc.
I am pretty sure I am up for this wheel reinventing ;-)
The only thing I am not strong in is the MySQL, but with you guys there
is nothing impossible!
Martin
--
PHP
after ?>
I've also seen this in some projects.
Thanks for ideas,
Martin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Ryan S napsal(a):
Hey,
this the first time I am actually working with "tags" but it seems quite
popular and am adding it on a clients requests.
By tags I mean something like wordpress' implementation of it, for example when
an author writes an article on babies the tags might be
baby,babies,
automatically cache the website into the memory. What happens if the
memory will get full?
Thanks for explanation,
Martin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I guess the XCache everybody talks about is the open-source here:
http://xcache.lighttpd.net/
But what about this: http://www.xcache.com/ ... is it the same author? :-O
Martin Zvarík napsal(a):
Hi,
I became confused after an hour trying to understand the PHP cache
solutions.
XCache, APC
Jochem Maas napsal(a):
anyone know whether running ZendOptimizer + APC simultaneously still causes
allsorts
of problems ... I know it did in the past but I can't find any very recent
stuff about the
issues online.
I believe you should look up eAccelerator or XCache, which should work
with Ze
Thanks for reply Stut.
So, the APC, XCache etc. doesn't work as FileCache and also doesn't
decrease the number of database queries, since it is not caching the
content...
I see now, it is obvious that it would be very hard to run out of memory.
--
Martin
Stut napsal(a):
On 2
iable? are the variables accessible across the
whole server? I still don't really understand, but I am trying...
Stut napsal(a):
On 22 Oct 2008, at 22:19, Martin Zvarík wrote:
I became confused after an hour trying to understand the PHP cache
solutions.
XCache, APC, eAccelerator and
PHP Version 5.2.4
I really don't like to use the EVAL function, but do I have choice??
This sucks.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
No offense, but I thought it's obvious what I want to print.
print_r() shows null, and it should print what you just wrote = array field.
It works when first defining with eval():
eval('$tpl'.$node.'=array();');
I guess that's the only way.
Anyway, I appreciate
Nope, you have to use the eval() everytime for read/write.
Martin Zvarík napsal(a):
No offense, but I thought it's obvious what I want to print.
print_r() shows null, and it should print what you just wrote = array
field.
It works when first defining with eval():
eval('$tpl'
:-D :-D :-D :-D :-D :-D :-D :-D
ok :)
Robert Cummings napsal(a):
On Mon, 2008-10-27 at 02:09 -0400, Robert Cummings wrote:
On Sun, 2008-10-26 at 22:39 -0700, Jim Lucas wrote:
Even slimmer
It's buggy... you need to test for an blank string to properly handle
the append to arr
What I know is that you can control GIMP over the command line = you can
use PHP to do this.
Though I guess GIMP doesn't support PSD files, I had to express myself
anyways.
vuthecuong napsal(a):
Hi all
Is there a way to create/read/write to psd file? (photoshop format)
I would like to hea
2008/10/26 Martin Zvarík <[EMAIL PROTECTED]>:
PHP Version 5.2.4
I really don't like to use the EVAL function, but do I have choice??
This sucks.
Hi there,
While this question can spur some neat solutions, it raises a red flag
in that if you need to do this, you proba
Afan Pasalic napsal(a):
hi.
I'm sorry for posting this more javascript then php question, but it's
somehow php related.
here is the issue: very often people close the window/tab without
logging out. I need solution how to "recognize" when [x] is clicked (or
File >> Close) and kill the session
I might have not read your post thorougly,
but it's important to know, that Header sends a HTTP request to the
browser - you are not hiding the destination URL.
So, calling header("location: in PHP is basically same as redirect using JS.
Martin
Zoran Bogdanov napsal(a):
Hi,
I
/manual/de/function.setlocale.php
g. martin luethi
Mon, 26 Jan 2004 14:36:04 -0500 John Taylor-Johnston
<[EMAIL PROTECTED]>:
I see what you are doing, But don't see where to create fr or fr-ca,
for my example?
John
Martin Luethi wrote:
the variable $_SERVER["HTTP_ACCEPT_LANGUAGE"] contains the A
$pattern = "/$stringA.*?$stringB/";
.*? -> matches everything between $stringA and $stringB
the "?" means: stop matching after the first occurence
of $stringB (quantifier minimizer). otherwise ".*" would
match everything between the first occurence of $stringA
and the last
line 16: mysql_connect("tflood", "thomas91");
I think you mean: mysql_connect("localhost", "tflood", "thomas91");
otherwise mysql_connect takes "tflood" as Server and "thomas91" as
Username (if so, its better to replace passwords with * before
posting)
-> http://ch.php.net/mysql_connect
after
Wed, 28 Jan 2004 16:11:59 +0200 Lorderon <[EMAIL PROTECTED]>:
> "Mike Migurski" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
>> >I have PHP installed on Apache and Unix with several vhosts so each vhost
>> >has its own user account on Unix. Now when accessing a webpage, Apache
>>
maybe its better to use fread() and fseek()
2000 bytes should be 2000 characters in a textfile
g. tinu
Wed, 28 Jan 2004 11:20:32 -0500 Benjamin TrÃpanier
<[EMAIL PROTECTED]>:
Hi,
I am using the chunk_split(); function to separe a long long text on
differents pages.
At this time, I can split th
Wed, 28 Jan 2004 11:41:56 -0500 Benjamin Trépanier
<[EMAIL PROTECTED]>:
On 28/01/04 11:29, "Martin Luethi" <[EMAIL PROTECTED]> wrote:
maybe its better to use fread() and fseek()
2000 bytes should be 2000 characters in a textfile
g. tinu
Wed, 28 Jan 2004 11:20:32 -05
download the source code:
http://www.php.net/downloads.php
or browse online:
http://cvs.php.net
the crypt() source is under php-src/ext/standard/
g. tinu
Thu, 29 Jan 2004 09:54:39 +0100 gerold kathan <[EMAIL PROTECTED]>:
hi there - i have user credentials in my DB encrypted with PHPs crypt()
func
Ooo! Ooo! Me, Me! Can I be scammed this time? :/
> -Original Message-
> From: Ryan A [mailto:[EMAIL PROTECTED]
> Sent: Monday, 2 February 2004 7:02 AM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] VERY URGENT.
>
>
> GREAT! The last time I went for the millions, my turn is
> over...so
nderstands and repeat the above..
HTH
Martin
> -Original Message-
> From: Ryan A [mailto:[EMAIL PROTECTED]
> Sent: Monday, 2 February 2004 10:04 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] comparing dates
>
>
> Hi,
> Am a bit confused as to how to do this, I
Instead of using "r+", use "w"
This will clear the file for you :)
> -Original Message-
> From: Mr. Austin [mailto:[EMAIL PROTECTED]
> Sent: Monday, 2 February 2004 1:51 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] Help with files
>
>
> I'm not entirely sure why it is that you assume
El Mié 04 Feb 2004 16:45, David Clymer escribió:
> I'm having some problems with the DB::isError function identifying a
> non-object as an error object (or so it seems). I'm using postgreSQL
> 7.3.x. The relevant code is below:
>
> /***[ my code start ]***/
>
>
http://au2.php.net/manual/en/function.basename.php
Martin
> -Original Message-
> From: Philip J. Newman [mailto:[EMAIL PROTECTED]
> Sent: Thursday, 5 February 2004 11:57 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] $PHP_SELF AND INFORMATION.
>
>
> $_SERVER
would usort() be better for this?
Martin
> -Original Message-
> From: Justin French [mailto:[EMAIL PROTECTED]
> Sent: Thursday, 5 February 2004 3:33 PM
> To: php
> Subject: [PHP] multi dimension array sort help
>
>
> Hi,
>
> I've read and re-read
nsider "the right way" ?
This is one of those "personal preference" things. Pick which ever way you
like the best and stick with it.
Martin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
You'll need to do a left/right outer join.
as you didn't say which database you're using, I'll give this back to you to
do some reading up on how to do it...
HTH
Martin
> -Original Message-
> From: Marc Greenstock [mailto:[EMAIL PROTECTED]
> Sent: Wednes
Matthew,
use $_POST/$_GET/$_REQUEST (depending on your form method) and foreach()
eg:
foreach($_POST['image'] as $key=>$value)
{
echo "$key -> $value\n";
}
Martin
> -Original Message-
> From: Matthew Oatham [mailto:[EMAIL PROTECTED]
> Sen
Hiya,
Work out the start array position, keep incrementing by 1 until you find a
"yes"
>From this you'll know the allowable end times.
HTH
Martin
> -Original Message-
> From: Bob Eldred [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, 17 February 2004 4:04 PM
> T
google is your friend
http://www.onlamp.com/pub/a/php/2001/02/15/php_admin.html
5th bottom one..
Martin
> -Original Message-
> From: ajay [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 18 February 2004 4:20 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] tmp_dir
>
>
r the format:
echo date("l F j Y", $time);
but for me, this caused the following output
Saturday June 27 2009
doesn't seem right somehow :/
Martin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Try doing a var_dump() or a print_r() on $inputfile to make sure you are
actually getting the file's content.
HTH
Martin
> -Original Message-
> From: Lopez, Kaleb (GEAE, Foreign National, CIAT)
> [mailto:[EMAIL PROTECTED]
> Sent: Friday, 5 March 2004 12:23 PM
>
I know somebody who coded a PHP script that attempts to prevent post
flooding and some other potential security 'flaws'.
I know quite alot about PHP, some things are still beyond my knowledge. I
was wondering if some people could have a look at it to see if it is a
viable way of reducing secrity r
it? Sounds more like a sys admin problem? i could be wrong.
>
> Jason
>
> "Martin Nicholls" <[EMAIL PROTECTED]> wrote:
> >
> > I know somebody who coded a PHP script that attempts to prevent post
> > flooding and some other potential security
have you got register_globals turned on or off?
Martin
> -Original Message-
> From: Bryan Bateman [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, 9 March 2004 12:25 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Why is this happening
>
>
> This does not work:
> requi
I haven't had anything like this happen to me, but maybe it's not line 52,
maybe it's line 51 or 50 that's the problem...
HTH
Martin
> -Original Message-
> From: Jough P [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, 9 March 2004 12:43 PM
> To: PHP
> Subjec
It's exactly as the error says...
You've echo'ed something out before the header statement.
Move your database query and header() above all the echos and it should then
work.
Martin
> -Original Message-
> From: Mike Mapsnac [mailto:[EMAIL PROTECTED]
> Sent: Wed
le section says,
>Introduction
>
> This extension adds support for Oracle database server access. See
> also the OCI8 extension.
Martin McCormick WB5AGZ Stillwater, OK
OSU Information Technology Division Network Operations Group
--
PHP General Mailing List (http://www.php.net/)
A thousand thanks. This is all starting to make a bit of
sense.
Martin McCormick
"Ford, Mike [LSS]" writes:
>For an Oracle 8i database you want the OCI extension, not the Oracle
>extension. OCI should be the extension of choice for Oracle version 7 and
>later.
--
I installed the FreeBSD port of php4.3.4. In order to query a
remote database server running Oracle8I, I am supposed to use oci
commands. I have a test script that one would think should do nothing
except briefly connect to the remote server:
#!/usr/local/bin/php
http://www.php.net/)
To u
I don't think this is the problem...
The problem is that oci* functions haven't been compiled.
You probably have the ora_* functions though...
I haven't compiled PHP myself so someone will have to tell you the right
make options to use to compile oci support.
HTH
Martin
My thanks to both of you. I am trying to find out now how to
compile in the oci8 functions because it is not obvious in the list of
configuration selections.
When I do get those functions, I can probably use the
information from Marcelo so every bit helps.
Martin Towell writes
I have this in equip-lend-index.php and want to pass the variable
$equipment back to the same page:
PRINT " Equipment: ";
PRINT "
Computers";
PRINT " Phones";
PRINT " ";
PRINT " ";
Hitting Select (submit button) doesn't pass the value of $equipment back
to the page. What am I doing wrong?
/
esult of the ping made in the remote host.
any idea to fix that?
thank you in advance for your tips ...
fred
Frédéric MARTIN
Stagaire Service Exploitation
Email: [EMAIL PROTECTED]
-
VTX Services SA
Avenue de Lavaux, 101
CH-1009 PULLY
http://www.vtx.ch
-
voyé : jeudi, 18. mars 2004 17:59
À : [EMAIL PROTECTED]; [EMAIL PROTECTED]
Objet : RE: [PHP] Problem to display the results of an exec + rsh
command
Frédéric Martin <mailto:[EMAIL PROTECTED]>
on Thursday, March 18, 2004 7:31 AM said:
> $res = exec("rsh x.x.x.x -l username
K, facility=TNS
ns main err code: 12545
TNS-12545: Message 12545 not found; No message file for
product=NETWORK, facility=TNS
ns secondary err code: 12560
nt main err code: 515
TNS-00515: Message 515 not found; No message file for
product=NETWORK, facili
Ryan
Because you are actually getting a result, a result with no records...
Might be better to use
http://au2.php.net/manual/en/function.mysql-num-rows.php instead
Martin
> -Original Message-
> From: Ryan A [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, 23 March 2004 11:37 AM
>
You should be able to use any of the file commands.
eg. $contents = file("http://www.myserver.com/outputpage.php";);
fopen(), etc should all work too.
Martin
> -Original Message-
> From: Russell P Jones [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 31 March 2004 9
echo str_replace(" ", " ", sprintf("%10u", rand(1,$sides)));
Martin
> -Original Message-
> From: David Scott [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 31 March 2004 8:01 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Having trouble formatting wid
Another solution to clean the browser auth cache is to close the browser; a
javscript function exists as well
"Nitin Mehta" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
news:[EMAIL PROTECTED]
> but it's not happening.
>
> - Original Message -
> From: "Burhan Khalid" <[EMAIL PROTECTED]>
, '{$_SESSION['add']['StartingDay']}'
> , '{$_SESSION['add']['StartingMonth']}'
> , '{$_SESSION['add']['StartingYear']}'
>
t:
http://www.devshed.com/c/a/PHP/Using-The-Google-Web-APIs-With-PHP/
--
Chris Martin
Web Developer
Open Source & Web Standards Advocate
http://www.chriscodes.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
://new.url.com/whatever.html";>
// Martin
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
1701 - 1800 of 1987 matches
Mail list logo