php-general Digest 11 Apr 2004 15:02:14 -0000 Issue 2699
Topics (messages 183097 through 183123):
timestamp to readabe date and time ?
183097 by: Damian Brown
183098 by: Ryan A
183099 by: Andy Ladouceur
183104 by: Damian Brown
183106 by: Andy Ladouceur
183107 by: Damian Brown
183108 by: Damian Brown
183116 by: Don Read
183121 by: Rainer Müller
Re: phpextdist and phpize
183100 by: Curt Zirzow
Re: php as cgi and module at same time
183101 by: Curt Zirzow
Re: Most bizarre date problem ever
183102 by: Curt Zirzow
Re: video thumbnail generation
183103 by: Curt Zirzow
Re: PHP e-commerce questions
183105 by: PHP Email List
trying to output a hyperlink
183109 by: Damian Brown
183111 by: John W. Holmes
183112 by: John W. Holmes
183113 by: Andy Ladouceur
Re: PHP5 and pear
183110 by: electroteque
SOLVED:Re: trying to output a hyperlink
183114 by: Damian Brown
SOLVED:Re: [PHP] timestamp to readabe date and time ?
183115 by: Damian Brown
Re: PHP-GTK mailing list
183117 by: David Robley
cannot find server even though the page is there?
183118 by: Andy B
Re: List Admins
183119 by: David Robley
183123 by: Elfyn McBratney
[solved][ignore]Re: [PHP] cannot find server even though the page is there?
183120 by: Andy B
Re: PHP OO concepts
183122 by: Ralph G
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
I need to output a date and time that shows more clearly than just
outputting the timestamp
what is the correct way to go about it ?
I have looked at getdate(), but I haven't fathomed it out yet !
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
--- End Message ---
--- Begin Message ---
On 4/11/2004 3:25:09 AM, Damian Brown ([EMAIL PROTECTED]) wrote:
> I need to output a date and time that shows more clearly than just
> outputting the timestamp
>
> what is the correct way to go about it ?
> I have looked at getdate(), but I haven't fathomed it out yet !
If you are using timestamp(14), here is how i do it: (after the select)
if(($row = mysql_fetch_row($result))>=1)
{
$d_year = substr($row[4],0,4);
$d_month = substr($row[4],4,2);
$d_day = substr($row[4],6,2);
$d_hours = substr($row[4],8,2);
$d_mins = substr($row[4],10,2);
$d_secs = substr($row[4],12,2);
}
I am using a mysql_fetch_row as i am getting a lot of fields from the db,
you may want to use the fetch_array or something else but eh above should
give you an idea. The reason I like it like this is because the
year,month,date etc is all in different varialbes which I can format the way
I want it...or can even give the client the option of specifying the
format...but thats another thing altogether....
HTH.
Cheers,
-Ryan
--- End Message ---
--- Begin Message ---
The second parameter of PHP's date() function takes a timestamp as an
argument, this may be what you're looking for?
Andy
Damian Brown wrote:
I need to output a date and time that shows more clearly than just
outputting the timestamp
what is the correct way to go about it ?
I have looked at getdate(), but I haven't fathomed it out yet !
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
--- End Message ---
--- Begin Message ---
I have tried that, but it gives a date in the future
and all records have the same time
the code is
<td><?php echo date ("l dS of F Y h:i:s A", $row[5]) ; ?></td>
and it gives an output of
Monday 18th of January 2038 10:14:07 PM
I need it to proces the timestamp in the database table so that it shows the
different times
Thanks in advance for a solution
> The second parameter of PHP's date() function takes a timestamp as an
> argument, this may be what you're looking for?
>
> Andy
>
> Damian Brown wrote:
> > I need to output a date and time that shows more clearly than just
> > outputting the timestamp
> >
> > what is the correct way to go about it ?
> > I have looked at getdate(), but I haven't fathomed it out yet !
> >
> > --
> > www.phpexpert.org/truefaith.htm
> > "True Faith is not just when you believe in God and yourself, it is when
> > others begin to believe in you as well" - Damian John Paul Brown 2004
--- End Message ---
--- Begin Message ---
And these are UNIX timestamps? Odd. I can't see date giving the wrong
output, could you post the timestamp you're using?
Thanks
Andy
Damian Brown wrote:
I have tried that, but it gives a date in the future
and all records have the same time
the code is
<td><?php echo date ("l dS of F Y h:i:s A", $row[5]) ; ?></td>
and it gives an output of
Monday 18th of January 2038 10:14:07 PM
I need it to proces the timestamp in the database table so that it shows the
different times
Thanks in advance for a solution
The second parameter of PHP's date() function takes a timestamp as an
argument, this may be what you're looking for?
Andy
Damian Brown wrote:
I need to output a date and time that shows more clearly than just
outputting the timestamp
what is the correct way to go about it ?
I have looked at getdate(), but I haven't fathomed it out yet !
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
--- End Message ---
--- Begin Message ---
Thank Yoy Ryan
I had thought the same, but I didn't know how to go about it
I did not know of the substr function
it is now outputting as follows
10 04 2004 - 21:23:50
Thanks once again, I am sure I will be asking for more help soon
I tend to dive in at the deep end and never learn the basics
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
"Ryan A" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> On 4/11/2004 3:25:09 AM, Damian Brown ([EMAIL PROTECTED]) wrote:
> > I need to output a date and time that shows more clearly than just
> > outputting the timestamp
> >
> > what is the correct way to go about it ?
> > I have looked at getdate(), but I haven't fathomed it out yet !
>
> If you are using timestamp(14), here is how i do it: (after the select)
>
> if(($row = mysql_fetch_row($result))>=1)
> {
> $d_year = substr($row[4],0,4);
> $d_month = substr($row[4],4,2);
> $d_day = substr($row[4],6,2);
> $d_hours = substr($row[4],8,2);
> $d_mins = substr($row[4],10,2);
> $d_secs = substr($row[4],12,2);
> }
>
> I am using a mysql_fetch_row as i am getting a lot of fields from the db,
> you may want to use the fetch_array or something else but eh above should
> give you an idea. The reason I like it like this is because the
> year,month,date etc is all in different varialbes which I can format the
way
> I want it...or can even give the client the option of specifying the
> format...but thats another thing altogether....
>
> HTH.
>
> Cheers,
> -Ryan
--- End Message ---
--- Begin Message ---
I have cracked it Andy, by using substr to take apart
the 14 digit timestamp
10 04 2004 - 21:23:50
is now showing, and each record is different
Thanks anyway, stick around for more questions
here is one
<td><?php $link = '<a href="' ;
$link = $link . $row[2] . '">' ;
$link = $link . '</a>' ;
echo $link ; ?></td>
is not working, I want to output $row[2] as a hyperlink
as it is the refering URL, but the above is just showing blank in the
output, with no link and no text in the output table
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
"Andy Ladouceur" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> And these are UNIX timestamps? Odd. I can't see date giving the wrong
> output, could you post the timestamp you're using?
>
> Thanks
>
> Andy
>
> Damian Brown wrote:
>
> > I have tried that, but it gives a date in the future
> > and all records have the same time
> > the code is
> >
> > <td><?php echo date ("l dS of F Y h:i:s A", $row[5]) ; ?></td>
> >
> > and it gives an output of
> >
> > Monday 18th of January 2038 10:14:07 PM
> >
> > I need it to proces the timestamp in the database table so that it shows
the
> > different times
> > Thanks in advance for a solution
> >
> >
> >>The second parameter of PHP's date() function takes a timestamp as an
> >>argument, this may be what you're looking for?
> >>
> >>Andy
> >>
> >>Damian Brown wrote:
> >>
> >>>I need to output a date and time that shows more clearly than just
> >>>outputting the timestamp
> >>>
> >>>what is the correct way to go about it ?
> >>>I have looked at getdate(), but I haven't fathomed it out yet !
> >>>
> >>>--
> >>>www.phpexpert.org/truefaith.htm
> >>>"True Faith is not just when you believe in God and yourself, it is
when
> >>>others begin to believe in you as well" - Damian John Paul Brown 2004
--- End Message ---
--- Begin Message ---
On 11-Apr-2004 Ryan A wrote:
>
<snipage>
> If you are using timestamp(14), here is how i do it: (after
the
> select)
>
> if(($row = mysql_fetch_row($result))>=1)
> {
> $d_year = substr($row[4],0,4);
> $d_month = substr($row[4],4,2);
> $d_day = substr($row[4],6,2);
> $d_hours = substr($row[4],8,2);
> $d_mins = substr($row[4],10,2);
> $d_secs = substr($row[4],12,2);
> }
Ugh!
list($y, $m, $d, $h, $i, $s) = split('[-:/. ]', $row[x]);
--
Don Read [EMAIL PROTECTED]
-- It's always darkest before the dawn. So if you are going to
steal the neighbor's newspaper, that's the time to do it.
--- End Message ---
--- Begin Message ---
Damian Brown schrieb:
I need to output a date and time that shows more clearly than just
outputting the timestamp
what is the correct way to go about it ?
I have looked at getdate(), but I haven't fathomed it out yet !
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
It is from an MySQL database with the field types DATETIME, DATE or
TIME? When you can use the mysql function DATE_FORMAT()
Example:
SELECT *,DATE_FORMAT(mydate,'%d.%m.%y - %H:%i') AS mydate FROM foo
(mydate is the name of the column)
Rainer
--- End Message ---
--- Begin Message ---
* Thus wrote Elfyn McBratney ([EMAIL PROTECTED]):
>
> > phpextdist
>
> Can't remember.. Google is your friend :)
Makes a standalone/out-of-tree tar ball. Also uses php-conf.
Curt
--
"I used to think I was indecisive, but now I'm not so sure."
--- End Message ---
--- Begin Message ---
* Thus wrote Andy B ([EMAIL PROTECTED]):
> is it possible to have php installed with apache as cgi and module both at
> the same time...??
Yes. See php.net/install
Curt
--
"I used to think I was indecisive, but now I'm not so sure."
--- End Message ---
--- Begin Message ---
* Thus wrote Brian Dunning ([EMAIL PROTECTED]):
>
> $check_date = mktime(0, 0, 0, substr($end_date, 5, 2),
> substr($end_date, 8, 2) - $i, substr($end_date, 0, 4), -1);
>
> Note that this works PERFECTLY for every date, and always has. Except
> for one particular day. When $end_date - $i is supposed to be April 4,
> the timestamp returned is -7262, which it thinks is 12/31/1969. Can
> somebody PLEASE tell me how the above code manages to produce -7262,
> when it's always worked properly for every other day in history?
Works fine for me:
$end_date = '2004-04-05';
$i = 1;
$check_date = mktime(0, 0, 0, substr($end_date, 5, 2),
substr($end_date, 8, 2) - $i, substr($end_date, 0, 4), -1);
echo date('r', $check_date), "\n", $check_date;
output:
Sun, 4 Apr 2004 00:00:00 +0000
1081036800
Curt
--
"I used to think I was indecisive, but now I'm not so sure."
--- End Message ---
--- Begin Message ---
* Thus wrote Stuart Gilbert ([EMAIL PROTECTED]):
> I'd really like to generate video thumbnails within PHP, are there any
> libraries available or anything? I can't find very much on the subject
> on php.net and not a lot more on google.
>
> I'd appreciate any pointers you could give me.
http://pecl.php.net/imagick
or
http://php.net/image
Curt
--
"I used to think I was indecisive, but now I'm not so sure."
--- End Message ---
--- Begin Message ---
> From: Matt Hedges [mailto:[EMAIL PROTECTED]
> Subject: [PHP] PHP e-commerce questions
> Hello.
Hi!
> I have built a site where people can register their weddings. I use
> MySQL/PHP to handle the database. I wish to add a step where people must
> pay to enter their information into the database.
>
> How do I do this?
I'm still new to PHP, but I have integrated Paypal into my shopping cart, as
it allows immediate approval and sends the confirmation code back as PHP so
that I can process the variables it sends while confirming the identity of
the server it was sent from. <--kinda complicated, but once you understand
PHP it's quite easy to do.
> What services do ya'll recommend?
Paypal
>I won't need a
> complicated shopping cart, since there will just be one thing to
> purchase...
> I just need something that takes credit card information and then assigns
> the user a username and password...
As stated the advantage to paypal (as there might be others that do the
same, haven't done any other research as I liked what paypal does for me) is
that you can get instant response to a credit card processing request. For
example like your wedding registry, if you had a Download for software you
wanted to give to someone for instant download for cost, they can pay
through paypal, be sent immediately back to the site once confirmed for
instant download.
If you'd like more information you can setup an account at www.paypal.com,
then navigate to the :Merchant Tools: Then to :Instant Payment Notification:
and it will explain how it works in more detail. Good luck.
***NOW, keep in mind this is only my opinion, do some research, Google for
Credit card processing firms that will allow you to do this aswell, There
could be others out there for you to try. One thing to point out is to watch
the fees associated with instant and credit card transactions. Some companys
charge a higher percentage to allow you to user their services. HTH :)
Wolf
--- End Message ---
--- Begin Message ---
<td><?php $link = '<a href="' ;
$link = $link . $row[2] . '">' ;
$link = $link . '</a>' ;
echo $link ; ?></td>
is not working, I want to output $row[2] as a hyperlink
as it is the refering URL, but the above is just showing blank in the
output, with no link and no text in the output table
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
--- End Message ---
--- Begin Message ---
Damian Brown wrote:
<td><?php $link = '<a href="' ;
$link = $link . $row[2] . '">' ;
$link = $link . '</a>' ;
echo $link ; ?></td>
is not working, I want to output $row[2] as a hyperlink
as it is the refering URL, but the above is just showing blank in the
output, with no link and no text in the output table
You kind of need something between the <a href> and the </a> for you to
see a link.
$link = "<a href=\"{$row[2]}\">Click Here</a>";
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phparch.com
--- End Message ---
--- Begin Message ---
Damian Brown wrote:
<td><?php $link = '<a href="' ;
$link = $link . $row[2] . '">' ;
$link = $link . '</a>' ;
echo $link ; ?></td>
is not working, I want to output $row[2] as a hyperlink
as it is the refering URL, but the above is just showing blank in the
output, with no link and no text in the output table
You kind of need something between the <a href> and the </a> for you to
see a link.
$link = "<a href=\"{$row[2]}\">Click Here</a>";
--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
php|architect: The Magazine for PHP Professionals – www.phparch.com
--- End Message ---
--- Begin Message ---
When in doubt, view source. :) As John has already mentioned, you need
text between the two tags to actually display in the browser. You
probably would've seen your mistake a lot sooner if you viewed the page
source when you first tried it out.
Also, you can save yourself some time using PHP's shorthand
concatenation operator.
> <td><?php $link = '<a href="' ;
> $link = $link . $row[2] . '">' ;
> $link = $link . '</a>' ;
> echo $link ; ?></td>
Turns into:
<td><?php $link = '<a href="';
$link .= $row[2] . '">';
$link .= 'Click here</a>';
echo $link; ?></td>
Although, it could be shortened even more, to:
<td><?php $link = "<a href=\"".$row[2]."\">Click here</a>";
echo $link;?></td>
But I imagine you're doing it with more lines for legibilities' sake.
Andy
Damian Brown wrote:
<td><?php $link = '<a href="' ;
$link = $link . $row[2] . '">' ;
$link = $link . '</a>' ;
echo $link ; ?></td>
is not working, I want to output $row[2] as a hyperlink
as it is the refering URL, but the above is just showing blank in the
output, with no link and no text in the output table
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
--- End Message ---
--- Begin Message ---
standard make install, did it for both rc1 and snaps
> -----Original Message-----
> From: Aidan Lister [mailto:[EMAIL PROTECTED]
> Sent: Sunday, April 11, 2004 1:06 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Re: PHP5 and pear
>
>
> Was that from a > pear install xml_rpc ?
>
>
>
> "Electroteque" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > Pear does not seem to be actually in the sources for some reason
> >
> > [PEAR] XML_RPC: The following errors where found (use force option to
> > install an
> > yway):
> > missing package name
> > missing summary
> > missing description
> > missing license
> > missing version
> > missing release state
> > missing release date
> > missing release notes
> > no maintainer(s)
> > no files
> >
> > did this for all of them ??
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
Thanks for all the help, I overlooked a simple mistake in html, I was so
much concentrating on concatenating the $link that I forgot to include the
link
I got a private email that solved it for me
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
"Andy Ladouceur" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> When in doubt, view source. :) As John has already mentioned, you need
> text between the two tags to actually display in the browser. You
> probably would've seen your mistake a lot sooner if you viewed the page
> source when you first tried it out.
>
> Also, you can save yourself some time using PHP's shorthand
> concatenation operator.
>
> > <td><?php $link = '<a href="' ;
> > $link = $link . $row[2] . '">' ;
> > $link = $link . '</a>' ;
> > echo $link ; ?></td>
>
> Turns into:
>
> <td><?php $link = '<a href="';
> $link .= $row[2] . '">';
> $link .= 'Click here</a>';
> echo $link; ?></td>
>
> Although, it could be shortened even more, to:
>
> <td><?php $link = "<a href=\"".$row[2]."\">Click here</a>";
> echo $link;?></td>
>
> But I imagine you're doing it with more lines for legibilities' sake.
>
> Andy
>
> Damian Brown wrote:
> > <td><?php $link = '<a href="' ;
> > $link = $link . $row[2] . '">' ;
> > $link = $link . '</a>' ;
> > echo $link ; ?></td>
> > is not working, I want to output $row[2] as a hyperlink
> > as it is the refering URL, but the above is just showing blank in the
> > output, with no link and no text in the output table
> > --
> > www.phpexpert.org/truefaith.htm
> > "True Faith is not just when you believe in God and yourself, it is when
> > others begin to believe in you as well" - Damian John Paul Brown 2004
--- End Message ---
--- Begin Message ---
problem was solved by using substr() on the timestamp
--
www.phpexpert.org/truefaith.htm
"True Faith is not just when you believe in God and yourself, it is when
others begin to believe in you as well" - Damian John Paul Brown 2004
"Damian Brown" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Thank Yoy Ryan
>
> I had thought the same, but I didn't know how to go about it
> I did not know of the substr function
> it is now outputting as follows
>
> 10 04 2004 - 21:23:50
>
> Thanks once again, I am sure I will be asking for more help soon
> I tend to dive in at the deep end and never learn the basics
> --
> www.phpexpert.org/truefaith.htm
> "True Faith is not just when you believe in God and yourself, it is when
> others begin to believe in you as well" - Damian John Paul Brown 2004
> "Ryan A" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> >
> > On 4/11/2004 3:25:09 AM, Damian Brown ([EMAIL PROTECTED]) wrote:
> > > I need to output a date and time that shows more clearly than just
> > > outputting the timestamp
> > >
> > > what is the correct way to go about it ?
> > > I have looked at getdate(), but I haven't fathomed it out yet !
> >
> > If you are using timestamp(14), here is how i do it: (after the select)
> >
> > if(($row = mysql_fetch_row($result))>=1)
> > {
> > $d_year = substr($row[4],0,4);
> > $d_month = substr($row[4],4,2);
> > $d_day = substr($row[4],6,2);
> > $d_hours = substr($row[4],8,2);
> > $d_mins = substr($row[4],10,2);
> > $d_secs = substr($row[4],12,2);
> > }
> >
> > I am using a mysql_fetch_row as i am getting a lot of fields from the
db,
> > you may want to use the fetch_array or something else but eh above
should
> > give you an idea. The reason I like it like this is because the
> > year,month,date etc is all in different varialbes which I can format the
> way
> > I want it...or can even give the client the option of specifying the
> > format...but thats another thing altogether....
> >
> > HTH.
> >
> > Cheers,
> > -Ryan
--- End Message ---
--- Begin Message ---
[EMAIL PROTECTED] (Cosmin) wrote in news:[EMAIL PROTECTED]:
> sorry for the off topic but i didn't knew where to ask this.
> does anyone know what's happening with the php-gtk mailing list. I
> haven't received a message for more than a month now and any message
> that i try to send comes back saying
>
> "Hi. This is the qmail-send program at pb1.pair.com.
> I'm afraid I wasn't able to deliver your message to the following
> addresses.
> This is a permanent error; I've given up. Sorry it didn't work out.
> <[EMAIL PROTECTED]>:
> Unable to open .qmail-php-gtk-general: access denied. (#4.3.0)
> I'm not going to try again; this message has been in the queue too
> long."
>
>
> sorry again for the off topic but I hope that one of the persons who's
> in charge of the php-gtk mailing list will read this message and
> hopefully fix this problem
If you have an old message from the gtk list, look at the headers and you
will find an address for the list maintainer - just send a query to that
address.
--- End Message ---
--- Begin Message ---
hi...
i have a page on my test web server... it has php/mysql stuff in it that
points to another db elsewhere that i have remote access to... my ip
address/domain name exist but when i go to it to test the page it says
cannot find server?? im lost now...it worked last night why not now...
--- End Message ---
--- Begin Message ---
[EMAIL PROTECTED] (Elfyn McBratney) wrote in
news:[EMAIL PROTECTED]:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> [postmaster@ added to Cc:]
>
> Hello,
>
> On Saturday 10 Apr 2004 00:39, -{ Rene Brehmer }- wrote:
>> I'll second that ... keep getting this in response from them:
>>
>> Thank you !!
>>
>> Your message has been received; we will treat your message and get
>> back to you as soon as possible.
>>
>> Besides the fact that mailman more or less makes this list useless
>> for me ... this is just another annoyance...
>>
>> Rene
>>
>> At 16:19 09-04-2004, Ryan A wrote:
>> >Please take out these two addresses:
>> >
>> >"Information Desk" <[EMAIL PROTECTED]>
>> >"Advance Credit Suisse Bank" <[EMAIL PROTECTED]>
>> >
>> >everytime we post to the list we get their damn autoresponders.
>
> Yes, postmaster, please do. The spam mennaces hit me 10+ times on
> every post i make to php-general@ (yes, only three or four today :)
Everybody - there is in the headers of every message to this list, an
addres for the list maintainer. Please try directing your requests to those
addresses where you are more likely to get help, rather than a bunch of 'Me
too!'s that sem to follow any of these messages.
Also, most mail/newsreader apps these days have some form of filter....
--- End Message ---
--- Begin Message ---
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Sunday 11 Apr 2004 10:35, David Robley wrote:
> [EMAIL PROTECTED] (Elfyn McBratney) wrote in
> > On Saturday 10 Apr 2004 00:39, -{ Rene Brehmer }- wrote:
> >> I'll second that ... keep getting this in response from them:
> >>
> >> Thank you !!
> >>
> >> Your message has been received; we will treat your message and get
> >> back to you as soon as possible.
> >>
> >> Besides the fact that mailman more or less makes this list useless
> >> for me ... this is just another annoyance...
> >>
> >> Rene
> >>
> >> At 16:19 09-04-2004, Ryan A wrote:
> >> >Please take out these two addresses:
> >> >
> >> >"Information Desk" <[EMAIL PROTECTED]>
> >> >"Advance Credit Suisse Bank" <[EMAIL PROTECTED]>
> >> >
> >> >everytime we post to the list we get their damn autoresponders.
> >
> > Yes, postmaster, please do. The spam mennaces hit me 10+ times on
> > every post i make to php-general@ (yes, only three or four today :)
>
> Everybody - there is in the headers of every message to this list, an
> addres for the list maintainer. Please try directing your requests to those
> addresses where you are more likely to get help, rather than a bunch of 'Me
> too!'s that sem to follow any of these messages.
Please check the headers of this post - Only List-{help,unsubscribe,post} are
present (plus the -help address, which is not a human), there is not an
address to contact the list admin.. postmaster@ seems perfectly fine to use
in such a case.
> Also, most mail/newsreader apps these days have some form of filter....
Yes they do, but I'm still using dial-up, so am annoyed when I recieve
<variable-number-here> of spam notes that still have to be downloaded..
These people need to unsubscribed, I shouldn't have to screen my mail because
of some arseholes. 8)
Elfyn
- --
Elfyn McBratney, EMCB
mailto:[EMAIL PROTECTED]
http://www.emcb.co.uk/
PGP Key ID: 0x456548B4
PGP Key Fingerprint:
29D5 91BB 8748 7CC9 650F 31FE 6888 0C2A 4565 48B4
"When I say something, I put my name next to it." -- Isaac Jaffee
>> ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <<
<< ~ Linux london 2.6.5-emcb-241 #2 i686 GNU/Linux ~ >>
>> ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ <<
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
iD8DBQFAeWuVaIgMKkVlSLQRAi1XAKCq/bYhA4zyUSN3hOv5tyfNCe04jACgrT3k
w2N+xPIpi6k9sTG5eZOKRCc=
=MYdh
-----END PGP SIGNATURE-----
--- End Message ---
--- Begin Message ---
found problem...apache died somehow for some reason....all better now
----- Original Message -----
From: "Andy B" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, April 11, 2004 6:32 AM
Subject: [PHP] cannot find server even though the page is there?
> hi...
> i have a page on my test web server... it has php/mysql stuff in it that
> points to another db elsewhere that i have remote access to... my ip
> address/domain name exist but when i go to it to test the page it says
> cannot find server?? im lost now...it worked last night why not now...
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--- End Message ---
--- Begin Message ---
OOP? Stay tuned for PHP5
-----Original Message-----
From: jdavis [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 07, 2004 1:45 PM
To: PHP List
Subject: [PHP] PHP OO concepts
Hello,
I have am checking out PHP OOP and it's pretty smooth. I have a decent
amount of Java experience so PHP OOP is really easy
to pick up. However I have a few questions I was hoping someone
could help me with.
Can php have a main()? If not ... how to you start a program that is
purley PHP OOP or is this even possible?
How popular is PHP OOP? Should I use PHP OOP for small dynamic web
pages? Is this the convention?
Thanks,
jd
--
[EMAIL PROTECTED]
"Bad spellers of the world untie!"
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---