php-general Digest 5 Jul 2008 08:56:39 -0000 Issue 5551
Topics (messages 276289 through 276295):
Scrambling a word
276289 by: Ron Piggott
276290 by: Michael S. Dunsavage
276291 by: Stefano Esposito
276292 by: Ron Piggott
276295 by: Richard Heyes
Trying to keep a dropdown selection sticky
276293 by: Michael S. Dunsavage
Re: Convert PDF Files to PCL-Files
276294 by: Ray Hauge
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 am using PHP 4
I am trying to figure out how to scramble a word.
Example: hello so the output might be elolh
Any ideas?
Ron
--- End Message ---
--- Begin Message ---
On Fri, 2008-07-04 at 18:52 -0400, Ron Piggott wrote:
> I am using PHP 4
>
> I am trying to figure out how to scramble a word.
>
> Example: hello so the output might be elolh
>
> Any ideas?
>
> Ron
>
>
http://koivi.com/letter-scramble/
--
Michael S. Dunsavage
--- End Message ---
--- Begin Message ---
On Fri, 04 Jul 2008 18:52:49 -0400
Ron Piggott <[EMAIL PROTECTED]> wrote:
> I am using PHP 4
>
> I am trying to figure out how to scramble a word.
>
> Example: hello so the output might be elolh
>
> Any ideas?
>
> Ron
>
>
str_shuffle()
--
Email.it, the professional e-mail, gratis per te: http://www.email.it/f
Sponsor:
Vieni nei Riccione Family Hotels! Ti aspettano servizi per bambini, ampi spazi
per il gioco e tanto divertimento! Prenota subito on-line la tua vacanza!
Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=8058&d=5-7
--- End Message ---
--- Begin Message ---
Is there a way to output the results with a space between each
character?
$shuffled = str_shuffle($str);
On Sat, 2008-07-05 at 01:20 +0200, Stefano Esposito wrote:
> On Fri, 04 Jul 2008 18:52:49 -0400
> Ron Piggott <[EMAIL PROTECTED]> wrote:
>
> > I am using PHP 4
> >
> > I am trying to figure out how to scramble a word.
> >
> > Example: hello so the output might be elolh
> >
> > Any ideas?
> >
> > Ron
> >
> >
>
> str_shuffle()
>
>
> --
> Email.it, the professional e-mail, gratis per te: http://www.email.it/f
>
> Sponsor:
> Vieni nei Riccione Family Hotels! Ti aspettano servizi per bambini, ampi
> spazi per il gioco e tanto divertimento! Prenota subito on-line la tua
> vacanza!
> Clicca qui: http://adv.email.it/cgi-bin/foclick.cgi?mid=8058&d=5-7
--- End Message ---
--- Begin Message ---
Is there a way to output the results with a space between each
character?
$shuffled = str_shuffle($str);
From memory:
$shuffled = implode(' ', explode('', $shuffled));
--
Richard Heyes
Employ me:
http://www.phpguru.org/cv
--- End Message ---
--- Begin Message ---
I have a form I want to keep sticky, but I can't figure out how. I got
all the <INPUT>'s to be sticky....
The select script
<?php
echo '<strong>State</strong><br>';
echo '<select name="State">';
foreach ($state_list as $key => $value) {
echo "<option value=\"$key\"> $value</option>\n";
}
echo '</select>';
echo '<br>';
?>
so now how do I keep that sticky?
--
Michael S. Dunsavage
--- End Message ---
--- Begin Message ---
jogisarge wrote:
Hello @all,
i am running php5 on a IBM i5 V5R4.
now i have to print exisiting pdf-files.
the problem is, i cant use external programms like pdftops or other stuff
like this, because the php core runs in the pase environment.
is there any possibility to convert existing pdfs to pcl files ?
bye jo
I don't know if IBM has a port of the linux command pdf2ps (to post
script). There should be some sort of converter from post script to
PCL, but I'm not completely sure on that. I'm not currently aware of a
straight converter. Sorry if that's not much of a help.
--
Ray Hauge
www.primateapplications.com
--- End Message ---