Thanks Martin. Greg just told me in private to look for nl2br and
through that I found wordwrap() (without "_") which helped me.
Thanks to both of you. C.
> -Original Message-
> From: Martin Towell [mailto:[EMAIL PROTECTED]]
> Sent: Monday, July 15, 2002 2:06 AM
> To: 'César Aracena'; 'P
there's a function "word_wrap()" (or is it "wordwrap()", something like that
anyway) that'll help you there.
-Original Message-
From: César Aracena [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 15, 2002 3:00 PM
To: 'PHP General List'
Subject: [PHP] BREAK into the DB
Hi all. I have this
Hi all. I have this DB where Im storing this sometimes large amount of
text into a TEXT field, but I cant seem to find the way to BREAK lines
so it wont make my browser go 3000 pixels wide when that text is
printed. About this, I have two questions:
1) What should I use to break the text into
On 15 Jul 2002 at 14:50, Chris Kay wrote:
>
> The data is stored in a text file that is created by mrtg/rrdtool
> The file size always stays the same and never grows even though the data
> does.
>
> I wish to pull the data into a mysql database, I don't have fields yet as
> I am not sure how to
On 15 Jul 2002 at 14:27, Chris Kay wrote:
>
> I wish it was that eazy :)
>
>
> --- Chris Kay Technical Support - Techex Communications Website:
> www.techex.com.au Email: [EMAIL PROTECTED] Telephone: 1300 88 111
> 2 - Fa
On Monday 15 July 2002 03:55, Tim Luoma wrote:
> Jason Wong wrote:
> > This list gets at least one question a day on this subject ...
>
> And there will be a lot more as people scan the web for example scripts
> and find ones that assume 'register_globals' is set to on.
Questions coming from thos
On Monday 15 July 2002 10:27, Justin French wrote:
> I'm getting the following error using 4.1.1:
> "Fatal error: Call to undefined function: mcrypt_create_iv() in
> /usr/local/apache/htdocs/tests/enc.php on line 3"
Did you actually install the mcrypt libs?
> Which is confusing, given that the
In article , [EMAIL PROTECTED] says...
>
> I am looking at importing data from rdtool into a mysql backend
> And not sure how to go about it...
>
> I was wondering if anyone has tried this or know of some information
> that may help.
>
> Or even a theroy on how the best way would be to do this.
base64 doesn't have a key, so anyone could decode the string, which is
obviously not desirable :)
thanks anyway
Justin
on 15/07/02 2:00 PM, James Cox ([EMAIL PROTECTED]) wrote:
> sorry to step in, but did you consider base64_[encode|decode] ?
>
> -- james
>
>>
>> Justin French wrote:
>>> W
When you say,
Order by RAND()
I would think the "Order by" construct expects a column name.
In your case, it gets a decimal value.
How does "Order by" treat decimal values?
Oh, I just checked the manual:
In MySQL Version 3.23, you can, however, do: SELECT * FROM table_name ORDER BY RAND()
I st
sorry to step in, but did you consider base64_[encode|decode] ?
-- james
>
> Justin French wrote:
> > Well, that was on my local test server, which I didn't compile with
> > mcrypt... so that solves that, but it appears my ISP didn't
> compile with it
> > either... so there's very little poin
This works for me, PHP 4.1.1
Upon first loading the page, I get nothing, but when I click on "go", I get
both referrer address' echoed.
refer.php:
---
go
Page refered by
';
echo $_SERVER['HTTP_REFERER'].'';
?>
---
It's already been said but:
1. are you sure php is working (with other f
I agree, I made a mistake on my last reply , and I apologize for that.
Thank you also for you for your coments, but my main question still open
without any related reply.
>
> > To say the minumum yor reply does not help in nothing.
> >
> > Who cares about privacy on my own company Intranet ?
Justin French wrote:
> Well, that was on my local test server, which I didn't compile with
> mcrypt... so that solves that, but it appears my ISP didn't compile with it
> either... so there's very little point in getting my local server working
> with it.
>
> What alternatives do I have?
I don't
on 15/07/02 12:51 PM, Saci ([EMAIL PROTECTED]) wrote:
> To say the minumum yor reply does not help in nothing.
>
> Who cares about privacy on my own company Intranet ?
1. I don't believe you specified this was a company intranet, but you may
have.
2. Generally it's a good idea to get things ri
on 15/07/02 12:41 PM, Joe Conway ([EMAIL PROTECTED]) wrote:
> Looks like your ISP doesn't have mcrypt support. What does phpinfo() show?
Well, that was on my local test server, which I didn't compile with
mcrypt... so that solves that, but it appears my ISP didn't compile with it
either... so th
> -Original Message-
> From: Saci [mailto:[EMAIL PROTECTED]]
> Sent: Monday, 15 July 2002 12:51 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] Does not work
>
>
> To say the minumum yor reply does not help in nothing.
>
> Who cares about privacy on my own company Intranet
Hi, got a question.
What happend if ignore_user_abort is true, and the user closes the window?
Also, i tried, but i push the stop button, and the script stops, shouldn
ignore that?.
Thx :D
_
MSN Fotos: la forma más fácil de compa
To say the minumum yor reply does not help in nothing.
Who cares about privacy on my own company Intranet ?
"Alberto Serra" <[EMAIL PROTECTED]> escreveu na mensagem
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> ðÒÉ×ÅÔ!
>
> Saci wrote:
> > // HTTP_REFERER as a feature. In short, it cannot rea
Justin French wrote:
> I'm getting the following error using 4.1.1:
> "Fatal error: Call to undefined function: mcrypt_create_iv() in
> /usr/local/apache/htdocs/tests/enc.php on line 3"
>
> Which is confusing, given that the manual says mcrypt_create_iv() is
> available in PHP 4.
Looks like your
Hi all,
I'm looking at a way of encrypting AND decrypting a string (cc#) with a key.
I plan to store the key in a file outside the docroot, and have asked the
ISP for as much advice as possible to protect the key file.
Anyway, since it needs to be encrypted and decrypted with a key, I obviously
Thanks for two things Martin: First for teaching me about the "-1"
operation (which seems logic now) and second, for getting me into the
"?:" operator. I've read something about it in the books, but didn't
tough it was really useful 'till now.
It worked perfectly. C.
> -Original Message-
try using this if statement instead
if ($m < $num_rows2 - 1)
or even use the ?: operator
echo ($m < $num_rows2 - 1 ? ", " : ".");
-Original Message-
From: César Aracena [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 15, 2002 12:04 PM
To: PHP General List
Subject: [PHP] IF inside LOOP?
Hi all.
Ive been fooling around with a LOOP which should show one or more text
string stored in separate rows in a DB. The trick would we to separate
them with commas (,) when theres another string to show or end it with
a period (.) if no other row is found according to the SELECT criteria.
T
In article , [EMAIL PROTECTED] says...
>
> Another PHP compilation question ...
>
> I've just compiled PHP 4.2.1 --with-mysql. I added no path to mysql, and
> it worked fine as it always does. However, I'm keen to add mod_python as a
> DSO to Apache as well, and noticed in PHP's INSTALL notes th
Pffft you can't trust Java, JavaScript or anything on the server side at
all. Since it's set by the browser (client) itself, the best you can do is
test for it, and provide a fall back option.
For the bulk of users, this will be okay, because they're on IE. What you
need to be carefull of is wh
ðÒÉ×ÅÔ!
Micha wrote:
> Hi,
>
> I would like to know the exact difference between -> and ::.
> I know that I can use as class directcly by using :: but I still don't
> know the exact meaning
> So why do they use in Example 8 on
> http://www.php.net/source.php?url=/zend2_example.phps $this->id
ðÒÉ×ÅÔ!
Saci wrote:
> // HTTP_REFERER as a feature. In short, it cannot really be trusted.
>
> Anybody know how to do that using JAva history with PHP together , or any
> other methode that works and can be trusted.
Thank god no method can be trusted :) History even less the the
referrer. Jus
Hi,
I am planning to use PHP to develop some scripts that will need to
create and manipulate html pages. One of the things that will be
created is a DOM tree of the html.
After reading the manual I've found that php supports the event-driven
and dom xml, but with the latter tagged as EXPERIM
include("Calc.php");
#http://www.phpinsider.com/php/code/Date_Calc/
#Date_Calc - a class for manipulating and comparing
#Calendar dates, as well as formulating arrays of dates
# for traditional calendar display.
$yesterday =
Date_Calc::prevDay($day=date('d'),$month=date('m'),$year=date('Y'),$f
> Lowell:
>
> On Fri, Jul 12, 2002 at 09:25:56AM -0400, Lowell Allen wrote:
> > Are you using JavaScript to update the image without going back to the
map
> > server?
>
> Dude, Dynamic HTML / JavaScript are a poor idea... unless you don't care
> about your potential customers.
>
> http://www.ana
Would anyone know of any PHP training or courses in Australia...
Also for the devolopers...
Is there at present, or a future plan for a PHPCE
A certified engineer :)
Just a thought since everyone else has them
---
Ch
I am looking at importing data from rdtool into a mysql backend
And not sure how to go about it...
I was wondering if anyone has tried this or know of some information
that may help.
Or even a theroy on how the best way would be to do this...
Thanks in advance..
--
>> Be warned that if PHP can delete them, so can anybody else on the shared
>> server who wants to write a PHP script to delete them, unless you've
>> configured PHP specially to run as a specific user, which is unlikely for
>> most ISP setups.
>
>How can PHP be configured to run as a specific use
SELECT RANDOM name FROM table
or
SELECT name FROM table ORDER BY RANDOM LIMIT 1
not tested, used at your own free will.
--
me
- Original Message -
From: "mm fernandez" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, July 14, 2002 11:37 PM
Subject: [PHP] retrieving random da
> can you teach me how to retrieve random data from my
> database? like for example...i have a list of names on my
> database and i'd like to retrieve only one name at a
> time..randomly. how do i go about this?
This is really a database question rather than a php question and you
haven't
> can I use limit to show the 2nd record on without knowing
> how many more records there might be?
>
> also, what happens if I set the limit in a mysql statement
> (LIMIT 5,10), but there are only 3 results? 7 results?
My answer would tend to be that you should try it for yourself and
s
hi,
can you teach me how to retrieve random data from my database? like for example...i
have a list of names on my database and i'd like to retrieve only one name at a
time..randomly. how do i go about this?
hope someone can help...thanx.
Alexander Ross wrote:
>
> can I use limit to show the 2nd record on without knowing how many more
> records there might be?
>
> also, what happens if I set the limit in a mysql statement (LIMIT 5,10), but
> there are only 3 results? 7 results?
This looks like a question that could be answered w
On Thu, Jul 11, 2002 at 10:05:05PM -0400, John Holmes wrote:
> > DOes anyone know how to build a reminder application on:
> >
> > a) identified users
> > b) Sorting users' reminders??
>
> Yes.
>
> ---John Holmes...
>
> http://homepages.tesco.net/~J.deBoynePollard/FGA/questions-with-yes-or-n
>
can I use limit to show the 2nd record on without knowing how many more
records there might be?
also, what happens if I set the limit in a mysql statement (LIMIT 5,10), but
there are only 3 results? 7 results?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www
php-general Digest 14 Jul 2002 20:27:28 - Issue 1464
Topics (messages 107585 through 107635):
Re: PHPDiscuss.com
107585 by: Adam Alkins
107603 by: John Holmes
Variables aren't being passed to php page
107586 by: Mike Heffner
107591 by: Micha
107596 b
In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Saci) wrote:
> I tried this simple code
>
>
>
> Page refered by
> echo $HTTP_REFERER.'';
> echo $_SERVER['HTTP_REFERER'].'';
> ?>
>
>
>
> and I receive blank reply even if referenced from a link from other site.
>
> What am i doing wrong
I totally agree. No offence to all the ppl who have asked, but didn't it say
on the download page that there had been "major changes to the way variables
are used"??
"John Holmes" <[EMAIL PROTECTED]> wrote in message
000a01c22b3d$e4755790$b402a8c0@mango">news:000a01c22b3d$e4755790$b402a8c0@mango
Jason Wong wrote:
> This list gets at least one question a day on this subject ...
And there will be a lot more as people scan the web for example scripts
and find ones that assume 'register_globals' is set to on.
TjL
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit
// HTTP_REFERER as a feature. In short, it cannot really be trusted.
Anybody know how to do that using JAva history with PHP together , or any
other methode that works and can be trusted.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
from PHP documentation:
http://www.php.net/manual/en/reserved.variables.php
'HTTP_REFERER'
The address of the page (if any) which referred the user agent to the
current page. This is set by the user agent. Not all user agents will set
this, and some provide the ability to modify HTTP_REFERER as a
I tried this simple code
Page refered by
';
echo $_SERVER['HTTP_REFERER'].'';
?>
and I receive blank reply even if referenced from a link from other site.
What am i doing wrong ? Or perhaps my server does not have referer enabled?
--
PHP General Mailing List (http://www.php.net/)
To u
Ahm... Anything good for MacOS X out there? I currently use and love BBEdit,
but am open to other alternatives.
Chris
He who calles himself "Lord Loh." (from <[EMAIL PROTECTED]>) wrote on
7/14/02 1:40 PM:
> www.phpide.de
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit
On 14 Jul 2002 at 13:42, Saci wrote:
> I would like to see from where visitor come from mypage i need a
> function who return the last visited page prior to mine.
>
> I didn't found any function on php for that purpose and I'm thinking
> in mix Java and php for that purpose, using the browser hi
Pedro Garre wrote:
>
>When I open a new window with javascript (window.open) the browser (IE) says I am
>about to leave the secure conexion.
>Same happens when I download the .der certificate.
>
Its a browser configuration. Most browsers have the means of notifying
the user if they are entering
> > foreach($words as $Key=>$Value) {
> > if($ignoreWords[strtolower($Value)]) {
> > continue;
> > }
>
> You would be better off using array_diff().
Jason,
Thanks, that works except that it doesn't account for case. I want to ignore case as
it doesn't apply here. But I was
www.phpide.de
Check this out - Php IDE
Lord Loh.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello, my name is lucas
I am student in computer science...
We are imporving a previous version of phpweblog ( News Management ) in
which we have had a DHTML editor and others goodies...For this part we don't
have problems...
But translations are problematics because we have integrated PHPlang, w
> > > PHP page. For example, with the following file test.php, using the URL
> > > 'test.php?mid=1' displays 'nope'.
>
> This list gets at least one question a day on this subject ...
Please refer to the manual when this happens, specifically:
http://www.php.net/manual/en/language.variables.e
Please read this:
http://www.php.net/manual/en/language.variables.external.php
Regards,
Philip Olson
On Sun, 14 Jul 2002, Mike Heffner wrote:
> Hi,
>
> I've recently upgraded from PHP 4.0.4p11 -> PHP 4.2.1, but now there seems
> to be a problem that variables from POST/GET are not being pas
Hi again,
ok, i found the (weird!) problem now:
Its not my server nor my ISP, but php (at least, i think so):
Here are the exact lines i used in my test script:
1st non working - delayed example:
mail($receiver,"-Subject-","Here are your account details:\n\nusername:
$lp_name\npassword: ".ba
On Monday 15 July 2002 01:00, Peter J. Schoenster wrote:
> I may be doing this all the wrong way :) so feel free to let me know,
> thanks.
I'm not going to comment on your overall concept.
> I've been developing a q/a database. I don' want to search on "what I
> consider" common words. Certainl
I would like to see from where visitor come from mypage i need a function
who return the last visited page prior to mine.
I didn't found any function on php for that purpose and I'm thinking in mix
Java and php for that purpose, using the browser history, Can someone
show-me how can I do that.
On Monday 15 July 2002 00:01, RoyW wrote:
> If:
>
> $today = date("Y-m-d");
>
> Then how to I get:
>
> $yesterday = ?
Use strtotime() followed by date(). Details in manual.
--
Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
Open Source Software Systems Integrators
* Web Design & Hostin
Hi again,
ok i found out now, that the problem is the "From: ... Reply-To: " header.
Whenever i leave those, the email gets delivered instantly, but included, the email
gets a delivery delay for about 3 hours.
Is there any other way, i can avoid getting the default email address as the sender,
Hi,
I may be doing this all the wrong way :) so feel free to let me know, thanks.
I've been developing a q/a database. I don' want to search on "what I consider"
common words. Certainly there must be a list of these. Anyhow, I explode the
question string into words and then iterate as such:
Richard Lynch wrote:
>>List,
>>I'm creating a PHP/pgSQL web site...I need to execute queries with a
>>cursor and get their result set into my PHP script. How can I make a
>>pgSQL procedure with logic that also returns a result set? I've
>>searched and searched but cannot find the answer. Doe
If:
$today = date("Y-m-d");
Then how to I get:
$yesterday = ?
Thanks!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
"Peter" <[EMAIL PROTECTED]> skrev i meddelandet
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> I know GIF support was dropped from the GD library, but can you make
> animated GIFs in any version of GD?
I think your best shoot would be to combine GD with ImageMagick which has a
function called co
Hello All,
I wrote some times ago an library to draw graphics in 2 and 3 D, but
this sources are write in C, whats the procedures I need to use this rotines
in PHP.
Alex
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Sun, 14 Jul 2002 10:35:13 -0400
"John Holmes" <[EMAIL PROTECTED]> wrote:
> Shouldn't gzip be in quotes, here?? The second argument to strstr...
indeed, that fixes that.. thanks
now, I have a problem with mozilla and netscape.
Although they both accept the ob_start("ob_gzhandler");
netscape
I don't think you need to do the
if(strstr($_SERVER['HTTP_ACCEPT_ENCODING'],gzip)) {
because ob_start("ob_gzhandler"); checks to see if the browser will accept
gzip content before gzipping it..
But I think the reason that it isn't working for you is that you don't have
the correct compression lib
> I wish to compress some data using
> ob_start("ob_gzhandler");
>
> I use
> if(strstr($_SERVER['HTTP_ACCEPT_ENCODING'],gzip)) {
Shouldn't gzip be in quotes, here?? The second argument to strstr...
> ob_start("ob_gzhandler");
> } else {
> ob_start();
> }
> but the compression is nev
On Sunday 14 July 2002 21:53, John Holmes wrote:
> > I've recently upgraded from PHP 4.0.4p11 -> PHP 4.2.1, but now there
>
> seems
>
> > to be a problem that variables from POST/GET are not being passed to
>
> the
>
> > PHP page. For example, with the following file test.php, using the URL
> > 't
I wish to compress some data using
ob_start("ob_gzhandler");
I use
if(strstr($_SERVER['HTTP_ACCEPT_ENCODING'],gzip)) {
ob_start("ob_gzhandler");
} else {
ob_start();
}
but the compression is never used..
obstart is always used withouth the gz_handler
is there a way around this? or am
Do you have apache2 and one of the latest php versions?
if so oyu need to download the latest php4apache2.dll ... I found in on the
manual page somewhere.
And oyu also need to change some other stuff which was listed in the
install.txt.
> - Original Message -
> From: "Richard Lynch" <[EM
Is the new window your opening secure? Is it an HTTPS URL? Either way,
sound like a client side issue to me...
---John Holmes...
> -Original Message-
> From: Pedro Garre [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, July 14, 2002 9:13 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] You are abou
> I've recently upgraded from PHP 4.0.4p11 -> PHP 4.2.1, but now there
seems
> to be a problem that variables from POST/GET are not being passed to
the
> PHP page. For example, with the following file test.php, using the URL
> 'test.php?mid=1' displays 'nope'.
Do you always upgrade programs witho
> > Wow...a forum. Is that vBulletin your using? Shouldn't you be giving
> > them credit somewhere??
>
> It looks like YaBB. You'd think when people are using a free BB,
they'd
> atleast have the courtesy of dropping a small plug at the end of the
page.
> I
> guess not
Exactly, it's the small th
Below, is the code of a form to predict some matches. What I want is to submit this
with with one button so it inserts the macthes in the database. One match is one
record.
The problem is that I don't know what to do now.
Can someone help me with this form and the insert file (addvoorspelling.ph
this is from the O'Reilly _Programming PHP_ (Rasmus Lerdorf & Kevin Tatroe):
"Because echo is not a true function, you can't use it as part of a larger
expression:
// parse error
if (echo("test)) {
echo("it worked!";
}
Such errors are easily remedied, though, by using the print() or printf()
*This message was transferred with a trial version of CommuniGate(tm) Pro*
Hi,
I've got a https site with Apache and mod_ssl.
When I open a new window with javascript (window.open) the browser (IE) says I am
about to leave the secure conexion.
Same happens when I download the .der certificate.
> Be warned that if PHP can delete them, so can anybody else on the shared
> server who wants to write a PHP script to delete them, unless you've
> configured PHP specially to run as a specific user, which is unlikely for
> most ISP setups.
How can PHP be configured to run as a specific user? I'm
On Sunday 14 July 2002 14:17, Liam MacKenzie wrote:
> This works fine, but is there a way to get apache to do it for me instead?
> Like, this for example...
>
>
> SetHandler server-info
> Order deny,allow
> Deny from all
> Allow from 192.168.0.0
>
This works for me:
SetHa
Liam MacKenzie wrote:
>
>This works fine, but is there a way to get apache to do it for me instead?
>Like, this for example...
>
>
>SetHandler server-info
>Order deny,allow
>Deny from all
>Allow from 192.168.0.0
>
>
Yes, using exactly the syntax you have. The exact line you have w
Check your php version. if its greater then 4.1.0, then you must either
enable 'register_globals' in your php.ini, or use $_GET['var'] or
$_POST['var'] to get data from a form
- Original Message -
From: "Mike Heffner" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, July 14, 2002
Liam,
Not altogether happy with the suggestion below. It works - for now.
A more generic solution might be to replace the hard-coded "9" with a call
to strrchr() on the last 'dot' character position (minus one). Then it
should work on any properly formed IP address.
Thereafter parameterise the su
Welcome Nicolas,
=You didn't actually say what the problem was!
=Some have made suggestions, please also consider (below):
i'm new and i'm trouble with this code :'( can U help me please ??
this is the code :
while ($cd_tbl = mysql_fetch_array ($result))
{
$cd_id = $cd_tbl['cd_id'];
$cd_oeuvre
I've come up with this before and solved it like this (guess it'll
work):
if($row['plevel'] == '0'){
echo 'No';
} else if($row['plevel'] != '0'){
echo 'Yes';
}
Notice the *ELSE IF* instead of a simple else statement. Try it.
C.
> -Original Message-
> From: JJ Harrison [mailto:[EMAIL PR
Hi,
I would like to know the exact difference between -> and ::.
I know that I can use as class directcly by using :: but I still don't
know the exact meaning
So why do they use in Example 8 on
http://www.php.net/source.php?url=/zend2_example.phps $this->id =
self::$id++ and not self::id++ or
This is no problem. Since PHP 4.2 register_globals is disabled by default (in
prior versions it was enabled).
Either you can use the $_POST, $_GET etc. arrays or simply set
register_globals in the php.ini to "On" !
-micha
Mike Heffner wrote:
> Hi,
>
> I've recently upgraded from PHP 4.0.4p11 ->
I've been trying to open and end some of the ascii portions of Quark Express
binary files, (I'm using PHP4 on MacOSX, the quark files are OS9 files).
Even if I make the simplest eregi_replace () having done ...
$fd = fopen ($file, "rb+");
$contents = fread ($fd, filesize ($file));
fclose ($fd);
Hi,
I would like to know the exact difference between -> and ::.
I know that I can use as class directcly by using :: but I still don't
know the exact meaning
So why do they use in Example 8 on
http://www.php.net/source.php?url=/zend2_example.phps $this->id =
self::$id++ and not self::id++ or
You can find AIM/ICQ (Since some years ICQ uses the AIM protocol - OSCAR -
too, the only difference is one packet where the ICQ client identifies it as
an ICQ Client, not AIM) information on http://www.rejetto.com/icq :)
I don't know anything about a PHP-AIM/ICQ project.
As server you can use lo
> I've tried an alternative way of installing from Marc Liyanage's web
> site, http://www.entropy.ch/ which was very easy to follow, but it
> absolutely will not allow me to view any PHP pages through Apache.
as far as I remember you have to have the original apache build (by apple)
to run Marcs
Hi,
I've recently upgraded from PHP 4.0.4p11 -> PHP 4.2.1, but now there seems
to be a problem that variables from POST/GET are not being passed to the
PHP page. For example, with the following file test.php, using the URL
'test.php?mid=1' displays 'nope'.
Is this a known problem, or is this
> Wow...a forum. Is that vBulletin your using? Shouldn't you be giving
> them credit somewhere??
It looks like YaBB. You'd think when people are using a free BB, they'd
atleast have the courtesy of dropping a small plug at the end of the page. I
guess not
--
Adam Alkins
http://www.ra
php-general Digest 14 Jul 2002 08:21:08 - Issue 1463
Topics (messages 107537 through 107584):
Animated GIFs
107537 by: Peter
Re: recusive functions
107538 by: Jome
Can't Install on Mac OS X
107539 by: Brandon Pearcy
107543 by: Liam MacKenzie
Re: Can this b
Hi all,
I'm looking at some pretty complex regexp's at the moment for parsing HTML,
stripping out some attributes, getting the values of others, etc etc.
The simple fact is that all these...
... and many more are *valid* HTML mark-up. It starts to make the task look
rather daunting --
95 matches
Mail list logo