Hi,
I started PHP in 1999, and wrote just one Web Site based on it. I started to
have a good feel for it and found it easy to implement, as well as it being
powerful. Shortly after that though, I was given the opportunity to learn
Cold Fusion, and haven't looked back since today.
I've got a poss
> Hello, I'am a french CF developper and I've just started to dev in PHP.
> You're right! Cold fusion is much easier than PHP but I think it's just a
> question of "experience".
That's one reason yeah. But aside from all the advanages of PHP, it seems a
task that would take one step in Cold Fus
Hi,
I've been fascinated by Flickr's, del.icio.us and other sites' usage
of these Weighted Lists. It's simple but effective and I really want
to use it for a project I'm doing.
So I had a look at Nick Olejniczak's plugin for Wordpress (available
here: www.nicholasjon.com) but am struggling to un
On Wed, 09 Feb 2005 10:56:51 -0800 (PST), Matthew Weier O'Phinney
<[EMAIL PROTECTED]> wrote:
> * W Luke <[EMAIL PROTECTED]>:
> > I've been fascinated by Flickr's, del.icio.us and other sites' usage
> > of these Weighted Lists. It's simple
Hi,
I have about 200 records in a table, and I need to update 2 of the
fields. The first is easy, but the second contains a list of keywords
all separated by spaces; I need to replace the spaces with commas. Is
this something I can do with some clever SQL, or shall I just do it in
PHP?
Any idea
On 4/17/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> > I have about 200 records in a table, and I need to update 2 of the
> > fields. The first is easy, but the second contains a list of keywords
> > all separated by spaces; I need to replace the spaces with commas. Is
> > this something I
Hi,
I really struggle with regex, and would appreciate some guidance.
Basically, I have a whole load of files (HTML) which are updated every
few minutes. I need to go through each line, looking for the word
CONFIRMED: (which is always in capitals, and always superseded by a
colon). The line loo
Hi.
I'm trying to execute a query which does a SELECT IN on an
array...here's how it stands:
$doms = implode( "','", $domarray );
$d=$_GET['d']
$qmailsql = "SELECT mq.id,
mq.user,
mq.domain,
mq.sender,
mq.arrive_time,
mq.subject,
mq.body_preview,
mq.relay
FROM mail_quarantine AS mq
WHERE //??
On Thu, 3 Feb 2005 08:37:44 +0800, Jason Wong <[EMAIL PROTECTED]> wrote:
> > $doms is a "master array" of a user's domains. $d is a
> > comma-seperated and unexploded list of domains to filter the SELECT
> > down with. (error checking is already in place)
>
> 1) make both $d and $doms into arra
Hi.
htmlentities has worked pretty well so far for me...except when it
comes across something like "ñw" or "ñ0w" in an RSS feed (v2)
It tries to convert the ñ - and it does, but because the ñ
doesn't have a space next to the w or the 0w, it breaks the XML and it
comes out as ñ0w which, I think, i
On Thu, 3 Feb 2005 15:45:51 -0800, Max Krone <[EMAIL PROTECTED]> wrote:
> I assume I am just missing something dumb. Could someone please
> enlighten me. I can post my code if it will help.
Code please, Max!
--
Will The Corridor of Uncertainty http://www.cricket.mailliw.com/
- Sanity is a
Hi,
I have some text in a file which, when it's dumped to a var, needs to
be replaced. In its raw form, it looks like this: <^JIM_JONES> and I
need to remove the <^_ and > characters and have it read "Jim-Jones"
It's nestled in amongst a load of other text - I'm fopen'ing a file
and reading it l
On 30/05/05, Brian V Bonini <[EMAIL PROTECTED]> wrote:
> On Sun, 2005-05-29 at 12:22, W Luke wrote:
> > Hi,
> >
> > I have some text in a file which, when it's dumped to a var, needs to
> > be replaced. In its raw form, it looks like this: <^JIM_JO
On 30/05/05, Brian V Bonini <[EMAIL PROTECTED]> wrote:
> On Mon, 2005-05-30 at 11:13, Murray @ PlanetThoughtful wrote:
> > > Someone much more clever that I can probably come up with something much
> > > cleaner and efficient but This works...
> >
> > Definitely not more clever and arguably not
On 30/05/05, Brian V Bonini <[EMAIL PROTECTED]> wrote:
[...]
> > Again, an example that is as close to your real-world needs as possible
> > would be very helpful.
>
> The original request was: "the text-to-replace is just in a var named
> $text1".
>
> I read that to mean you'd already extracte
On 31/05/05, Murray @ PlanetThoughtful <[EMAIL PROTECTED]> wrote:
> > >
> > function replace($string){
> > preg_match("/^<\^([a-zA-Z]+?)_([a-zA-Z]+?)>/", $string, $matcharr);
> > $string = str_replace($matcharr[0], $matcharr[1] . " " .$matcharr[2]
> > . ":", $string);
> > return
On 31/05/05, W Luke <[EMAIL PROTECTED]> wrote:
> On 31/05/05, Murray @ PlanetThoughtful <[EMAIL PROTECTED]> wrote:
> > > > >
> > > function replace($string){
> > > preg_match("/^<\^([a-zA-Z]+?)_([a-zA-Z]+?)>/", $string, $matcha
Hi,
I used to have problems with this in Cold Fusion - and I'm still
struggling this time in PHP!
Very basic. Looping over 2 tables - an email table, and a data-table.
I'm using * just for ease for the time being:
SELECT * FROM f_c_users,f_comments WHERE fcEmail=cemail GROUP by fcEmail
If the
18 matches
Mail list logo