Hi.
Is there a PHP function to get a message part ID through IMAP?
I´ve been looking for one but did not find it. Becaues the function imap_fetchbody
requires a message part but I can´t figure out how to get its ID.
anyone?
thanks in adv.
Joel.
kie not expire at all?
If I don't mention any expiration time, the cookie expires as soon
as quit the browser. Can I use date instead of time? If yes, then in
which format should I specify the date?
Thanks,
--
Joel Agnel
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
http://www.portland.co.uk/
They provide free PHP and MySQL although their forums are the
only options for quick support
--
Joel Agnel.
Sign up for our Free Weekly Newsletter that delivers
Cool Sites directly to you by e-mail. You'll have Fun!
Click Here : http://www.siteskool.com/
ick to making it behave better, or do I simply have to
stick with 5.2 until it's no longer supported?
Is anyone else out there in the same boat?
Thanks!
Joel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
http://svn.php.net/viewvc/php/php-src/tags/php_5_3_6RC3/NEWS?revision=309052&view=markup
2011/3/10 sexyprout :
> What will be the changes in PHP 5.3.6 final?
>
> 2011/3/10 Johannes Schlüter
>
>> The third, and last, release candidates of 5.3.6 was just released for
>> testing and can be downloade
You might want to take a look at the BC Math functions, which can
perform operations on arbitrary length numbers.
On Tue, Mar 15, 2011 at 12:31 PM, Ford, Mike wrote:
>> -Original Message-
>> From: Andy McKenzie [mailto:amckenz...@gmail.com]
>> Sent: 15 March 2011 15:51
>>
>> As it turns o
Take a look at MCache: http://www.mohawksoft.org/?q=node/8
A drop in distributed replacement for php sessions.
Or you could use memcache to do the same thing.
On Thu, Mar 17, 2011 at 12:06 AM, Alessandro Ferrucci
wrote:
> Hello,
> I'm curious, what are the most popular methods to perform sessi
heduler, Mac (non-osx) has applescript (I think), and OSX and Linux
have, well, everything.
Otherwise, you could try an online cron service. Like:
http://www.cronservice.com/
I have no idea how reliable they are, etc..., but it's likely cheaper
than hosting with a new place.
J
27;s going
on. So it requires more documentation.
* you run the risk of stepping on pre-existing variables.
However, the upside, namely, eliminating a *ton* of code, is attractive
enough to me that I use this for most select boxes I do.
Joel
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
e between those
clicks, thus making even a temporary id based on the IP address
unreliable, and perhaps frustrating if your site keeps 'forgetting'
things about the user.
Joel
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
t a maximum of 5 seconds (or whatever) before they see your
new image.
The point is that you can't talk directly to the browser. You have to
talk to the server, and then have the client periodically poll the
server to see what new data it should get.
I think.
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
);
ImageFilledRectangle($image, 20, 20, 80, 80, $blue);
$temp1 = pdf_open_image($pdf, "jpeg", "memory", $image LOST ME HERE
!!
please show me the way !!!!!
Thanks
Joel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
same thing
$query = "SELECT * FROM polls ORDER BY pollID DESC LIMIT 1";
dont need both params for LIMIT. just the num of rows u want back works too.
Joel
"Hans Prins" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
>
u might have something on the ownership issue.
i ran into the same thing... play with php's "chown" command.
look it up php.net may help, i was having a similar issue a few months back.
Joel
"John Taylor-Johnston" <[EMAIL PROTECTED]> wrote in message
news:[EMA
make sure u run a session_start(); before anything on the page
u cant access any session vars without it.
Joel
"Terry Lau" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hello,
> I want to set a cookie when I enter a text into the text field, and
stick a.
set_time_limit(XXX);
at the top of the page
where XXX is the maximum time u would like it to run. ex... 180 for say 3
minutes.
Joel Colombo
"Mathieu Dumoulin" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Ok, i got this script i run on my
query result like MYSQL ?
$x = mysql_result($result, 0, 'field');
another way for mysql_result
$r = mysql_fetch_assoc($result);
$value = $r['fieldname'];
-- OR --
just an array ?
$result['fieldname'] = 5;
$x = 'fieldname';
echo ($result[$x]);
did that help ?
i think i
not mysql_fetch_array unless u need those int indexes.
mysql_fetch_assoc is the same thing but does not index the integer value,
just the string field name.
Joel
"Leif K-Brooks" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Use mysql_fetch_array instead
PHP
look at the Date( ) Function at php.net
http://us2.php.net/manual/en/function.date.php
Joel
"Lord Loh." <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> How do I convert the unix time stamp (the one I get by the time()) to a
> readable English lang
jim
there is no need for the second parameter in Date() for PHP, unless u want
something other then current time.
Date ('m-d-y') is the same as Date ('m-d-y', Time())
Joel
"James Holden" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> In
ould look at another
solution.
perhaps an array of the items stored in javascript with a simple to store the active one.
i have ALOT of experience with the hidden areas.
Joel
"Enediel" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> good day to all readers.
&g
function make_alphanum($string_val) {
return eregi_replace("[^[:alnum:]]", "", $string_val);
}
strips everything except ALPHA and NUM Chars
Joel
"Kenn Murrah" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Greetings.
>
> I'
might want to post this to the developers group.
php.dev
Joel
"Joe Wong" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi, I am writing a PHP extension on Win32. I put a ZEND_SET_SYMBOL in the
> php_init_xxx_globals() and it failed to compile under Win32
then 1 table in FROM. u must always
specify where u are selecting from as well unless u SELECT * FROM t1,
t2... that will work or SELECT t1.*, t2.field_a, t2.field_c... works also.
Joel Colombo
"Alawi" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> SELECT
oh and i just noticed u want to select the 'type_id' twice... i assume from
each table SO u need to...
SELECT table1.type_id AS t1_type_id, table2.type_id AS t2_type_id FROM t1,
t2
use the 'AS' function it helps with a lot of headache later... trying to
figure out y u get the
duplicate POST from php.db
"Shaun" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Hi,
>
> i would like to list all of the tables and field names in my database
>
> e.g.
>
> table 1
> field 1
> field 2
> field 3
> table 2
> field 1
> field 2
> field 3
> table 3
> field
Try:
somewhere global define :
$encryptiontechnique = 'ENCRYPT ALGORITHM';
function encryptPassword($password, $salt='') {
global $encryptiontechnique; if ($salt === '') { $salt =
$encryptiontechnique; }
// CODE..
}
Joel Colombo
"Liam
a Mac, but the operations are fundamental to GUI.
I also find it a puzzle why so many companies seem to think that
MSOutlook's advantages outweigh the problems of having to bolt antivirus
on everything (and the occasional slip-through that then proceeds to
dirty entire subnets), but that is a
all web
server (i. e., presenting the view of the file system that the outside
world is supposed to see)?
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ave read somewhere reports of some project working to set up
a similar special-purpose php-template server for php, but that may be
just my imagination.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing
th either cookies or URL.
Sessions can use URLs to store the session ID when the user has cookies
turned off.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To
e in the chain?
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
n't aware of what the standard says concerning this topic,
there are some RFCs you should read.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> STOP SPAMING the list.
http://www.php.net/mailing-lists.php
Has some basic guidelines for list useage.
(To the OP, [ANN] or [ANNOUNCEMENT] is a kinder tag.)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
what looks good and heredoc is a nightmare of
> horrors...
If that's the results you're getting, I'd say heredoc is probably not
appropriate for what you're trying to do.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www
en
would return. The second is explained to be an optional limit to the
number of bytes to be read.
> How come this error occur?
My guess is that you tried to pass fgets either the wrong number or the
wrong type of arguments.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation
#x27;s the only comment I have on the subject.
If the list maintainers do have rules or guidelines about announcements,
maybe one of them would speak up now?
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP G
.
Anyway, whether you parse or let the user tell you (MISE) depends on how
careful you need to be (i. e., what your application is going to do with
the upload).
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General
> This position requires strong technical knowledge in a server-side
> scripting technology such as PHP (preferred) /JSP/Perl/ASP. Knowledge
> of SQL queries, stored procedures and database design required. Must
> have experience in HTML/CSS and familiarity with HTTP and networking
> concepts. Grap
rs (particualarly in relation to your app), and XSL can
definitely be used in ways that don't conform to that model. That's no
big deal, just part of what makes life interesting.
(And if you get into Javaland, you'll hear a lot about MVC and
frameworks. That's a slightly more
", $Marion );
$Marion = str_replace( "\n", "\n", $Marion );
$Marion = '' . $Marion . "\n";
echo 'Marion: ' . $Marion . "\n";
$Juliet = preg_replace( '/([^\r\n]*)(\r\n|\n\r|\r|\n)/',
"\${1}\n", $Helen
pport in Pear's encryption stuff. I'm sure the php
community would appreciate it if you would build and share anything
that's missing. ;->
> But I will take a look at SNOOPY. (hey.. isn't the name snoopy
> copyrighted??)
Trademarked, but only in relation to a c
hen you wake up this morning, the page
for pack() lists an 'N' format for unsigned long big endian byte order
for pack() and unpack(). I think what you probably want to do most is
use the 'N' format when you unpack.
(The other responses were amusing, was it a full moon last ni
> Greetings again,
>
> Did as Ralph suggested...here is the output :
>
> [EMAIL PROTECTED] php]# find / -name php.ini -print
sudo is your friend.
> /home/chris/Documents/Mein Stuph/PHP 4
> Package/php-4.3.1/pear/tests/php.ini
> find: /mnt/floppy: Input/output error
> find: /mnt/cdro
son to do so.
Yeah, but I think the OP was not talking about mangling headers. The
subject was how to ask questions, not how to set up the list server.
The question is whether or not a person wants personal replies, I think.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (
> In php, I don't see anything right offhand.
http://www.php.net/curl
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www
to not listen
to anything coming in over the network.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
other dep. since a
> change in design may force a change in your logic.
> If you can, try to build a separate interface for your app which you can
> use to interface the backend of the other deps. You might even consider
> Webservices. This way you are independend of the design of th
> Hi Joel,
>
> Thanks for nice comments on the XML, XSL.
>
> I want to know more about it. can you please send me
> some article, links and tutorials?
>
> Thanks
>
> Hardik
The ultimate source for xml related technologies is the World
Wide Web Consortium at
> if you do sniff the hash, the key, and the session. You will have to
> get your request in before the key becomes stale,
race, race!
> In most cases the authentication is the
> first thing done so we're dealing with micro seconds.
Most cases?
Why re-invent the wheel
eep tens of
thousands of lines of code constantly in your head? Or do you like to
focus on several hundred lines at a time, get those to behave, then move
on to another part with a fairly high level of confidence that you won't
shoot yourself in the foot by using the wrong coun
did a little script to mail out files on a regular basis. A co-worker
wrote a C program that was called by the MSW2k scheduler, and that C
program checked that my mailing script had completed before it tried to
start another instance of the script.
--
Joel Rees, programmer, Kansai
> Hi,
>
> am Wednesday 23 July 2003 11:48 schrieb Joel Rees:
>
> > (You know that $accesses->count and $accesses->resetCounter() are at
> > least declared in the same class declaration. $accesses_count and
> > accesses_resetCounter() could be declared in enti
arch your management is most likely to
understand is research that is done in house.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
re is still a problem with the header function - it still
> will not redirect.
So did you check for things like CR/LF?
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
And if you have any valuable data, consider it to have been stolen. If
you have credit card numbers, report the possibility of theft to the
credit card companies. Etc.
If you're trolling, go away.
--
Joel Rees, programmer, Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://w
quickest approach, anyway. And I'm sure
they appreciate the notification. I sure would.
--
Joel Rees, programmer, Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
on if you have that much experience.
A book you might find useful in this context is Chris Radcliff's Perl
for the Web. (Perl is one of PHP's grandpappies, so much of the
discussion will apply to PHP.)
> I appreciate your comments in advance.
I made no comments in advance, but you'
at's okay, jump into
bed with them.
If you don't like the deepening recession, run like hell, because if you
think about it, it's exactly that kind of business that sucks all the
value out of things. (And that's exactly what recession and depression
are all about.)
--
Joel
n. Wish me luck :D
Good luck, but don't be surprised if the road is longer and harder than
it ought to be. Make sure you can make a living while you're fighting.
--
Joel Rees, programmer, Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
sending the next.
You can get mass-mailing systems written in Perl, I think there are now
some available for PHP.
--
Joel Rees, programmer, Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To un
earn to do it right.
Doing it right involves teaching your buddy how to publish an interface
to the parts of his site that he is willing to share, etc.
If you're not legit, find something more constructive to do with your
time.
--
Joel Rees, programmer, Systems Group
Altech Corporation
) && is_file($dest_file) && etc etc etc) {
unlink($dest_file)
}
-- or -- do charles method and be sure if you want to delete it is gets
deleted.
if (unlink($dest_file)) {
// Actions when deleted
}else {
// Actions if file does not exist, or fails, or is errored, or etc etc
et
Joel Colombo
"L0vch1y" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> -> php-general.
>
> I used such code:
>
> $exp = 60*60*24*10; # for ten days.
> session_set_cookie_params($exp);
>
> But it works wrong - cookies were removed
Here is the whole setup simple step-by-step even for PERL if you want !
http://www.ricocheting.com/server/apache.html
Joel
"Daniel Perry" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Dear Sir
>
> I require a complete installation package if possible.
is. When I test this out on a simple php
script (that only creates a connection to the db
through odbc_connect), it causes a segmentation fault
when run from the command line. Does anybody have any
ideas or know the resolution?
Thanks in advance!
Joel
___
h the prob last week... running redhat with mysql PHP combo.
all worked after i restarted the mysql service from command line.
Joel Colombo
"Jennifer Fountain" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
Here is the code:
WhenI try to connect, I
> That's fine for that but I have several places that use if's and else's...
AFAIK, you can't do conditionals inside a here doc. But then you don't
have to build your entire output string in one here doc, either.
Hmm. Maybe you're trying to build templates?
or your host re-organizes its
directory structure, and all of your includes rely on the include_path,
simply re-set include_path, and your site works again.
joel
[1] Of course, the order of directories in your include_path matters,
too. If it contains '.:/usr/home/sites/www.walkereffects.com/
> 1. This is the an example of the Nigeria 419 scam. I have no idea how it got
> the 419 in the name.
http://www.google.com/search?hl=en&ie=ISO-8859-1&q=nigeria+419
in particular,
http://home.rica.net/alphae/419coal/
--
Joel Rees <[EMAIL PROTECTED]>
--
PHP
> As I said, since I was recursing through the function by calling it numerous
> times in the middle of its execution, and since the function didn't
> explicitly return, I didn't expect it to continue past each call. That's
> all!
Sounds like you're coming in from CoBOL or maybe BASIC?
--
PHP
bit of help there:
http://jakarta.apache.org
(tomcat is an open source java server that can be used with or without
apache, and struts is an application framework.)
--
Joel Rees <[EMAIL PROTECTED]>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
was pretty steep for me because I was trying to pick up Java
and objects at the same time. I think you'll have less trouble if you
already are comfortable with Java.
--
Joel Rees <[EMAIL PROTECTED]>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
> Its kind of ugly, but its possible to call a php script thru a system()
> function in Perl.
Why bother going through a system call? If you have apache loading both
mod_php and mod_perl, you can call (include or whatever) through normal http
methods.
--
Joel Rees <[EMAIL
any made available for php but not for perl, I'd do the
graphics manipulations on php pages and be done with it.
(It seems odd to me that your hosting company doesn't want to load the
perl modules. That might have me wanting to drop the hosting company and
fire up an openbsd box to host my o
st taught myself php from the on-line docs at
http://www.php.net/docs.php
and some good sample source. I'm thinking I'd focus less on the book and
more on choosing good samples.
I personally like O'Reilly books in general. But I haven't seen their
PHP offerings, so I'l
learn the English
> terms.
I imagine things will improve with Dutch. Japanese docs have definitely
been improving -- less reliance on technical words borrowed from English,
greater accuracy when choosing native terminology, less Janglish grammar.
--
Joel Rees <[EMAIL PROTECTED]>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
gether, of course.
However, guessing from his e-mail address, he may physically not be
anywhere close to any dumpsters that would have old computers and parts
in them, much less to a home that could be hooked up to cable/dsl.
http://www.matkurja.com/eng/country-info/
--
Joel Rees, programmer,
a file extension among the weaker
class of protections.
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
nterest obligations to pass some of
the action back to the producers of free/open tools that help one make
money.
For MySQL AB, it will likely mean taking a slip in market share, since
they lose their "favored" status in the PHP community. From what I've
seen, Monty's a fairly sha
et/macosx/php.html
http://developer.apple.com/internet/macosx/phpappledevtools.html
--
Joel Rees, programmer, Kansai Systems Group
Altech Corporation (Alpsgiken), Osaka, Japan
http://www.alpsgiken.co.jp
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
sers upload a .zip (or .tar.gz)
file over HTTP, and have your server uncompress it and (optionally)
create a directory structure matching the contents of that .zip.
The 'gallery' image gallery software does .zip file uploading, and it's
quite handy.
Just a thought,
joel
--
[
7;ll start using {}
everywhere I embed variables in strings, but I was unaware that stuff
like this:
"This is a $variable embedded in a string"
might no longer work. If you have URLs, I'd love to read up on this.
Thanks!
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
ine your own index-format, and use the 'FROM' token instead of
'FROMORTO'.
More info is available by going to Pine's config screen (m, s, c),
searching for 'index-format' (w index-format ), and hitting
CTRL-G to bring up the help.
HTH!
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
MP in mysql are 4 bytes
and they both give u down to the second.
then to find out today, u just run Date('m-d-Y');
compare those vals to Date('m-d-Y', $DB_VALUE);
there u go it is today or it isnt ! out put data accordingly.
Joel
"Alexander Ross" <[EMA
I installed PHP when I installed Red Hat 7.2 without MySQL. I have now
added MySQL but I can't figure out how to enable it in PHP. Can anyone help?
thanks,
Joel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi,
Right now my PHP is set up to use Postgresql. I want to use MySQL now. How
do I let PHP know that MySQL is now installed?
thanks,
Joel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
e Return-Path in this manner;
that's out of my area of expertise, so if the above doesn't work, I'm
not much more help...
Joel
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
r order by "number": generates results 10,15,150,2,30
i need a natural sort
2,10,15,30,150
is there a way to sort FLOAT valuse like this using an order by with a combo
of other functions or something ?
Thanks
Joel
--
PHP General Mailing List (http://www.php.net/)
T
Hi,
I would like to recompile php with mysql support. I am a newbie. I really
don't want to have to reinstall RedHat just to be able to use MySQL with
php.
I ran:
rpm -qa | frgrep php
and I see these:
php-4.0.6-15
php-imap-4.0.6-15
asp2php-gtk-0.75.17.1
php-ldap-4.0.6-15
if you're counting rows just to find out what the next value
for an ID is, then, as you already said, you're doing the wrong thing.
Joel
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ributes, I'm 100% sure you don't want to remove from *all*
of them. Like this:
Removing the quotes from the title attribute will likely break at least
some browsers, if not all. So your regular expression needs to be able
to handle that gracefully.
Good luck!
--
[ joel boo
txt, .conf, etc...) you might want to come up
with a more general way to add filters besides simply tacking on stuff
with &&. One thought might be to keep an array of patterns, and do a
match on the whole array. When a new file needs to be filtered, simply
add an entry to the array, keeping
a useful one, but if you
don't want to call a script directly, I think you'll need a rewrite.
There also may be another way to do it in Apache, but I don't think
there's anything in PHP you can do to accomplish this.
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ise, have you checked with your hosting company to see if this is
a common issue that their customers have?
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
er, it
supports Flash banners, as well as everything else you want to throw at
it, it's free, and it's free. Installation is remarkably easy.
Joel
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
f you can't use perl for the whole thing, perhaps you could have PHP do
all your logic, and then pass the data to a perl script to format and
save it to a file. Or maybe sprintf() does everything you need...
Joel
(more on perl formats:
http://www.perl.com/doc/manual/html/pod/perlform.html)
--
x27;t imagine how
I could deal with variables that didn't have something in front of them
to separate them from barewords.
Oh well.
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
be at, or this:
http://www.php.net/manual/en/function.array-search.php
if you're not sure what key 'foo' will be at and you want to know what
that key is.
Joel
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
;t a PHP script (it's Perl), but it does exactly what you want:
http://oss.gospelcom.net/staff.php
The first tool listed there is called 'cvsdump' -- it dumps, processes,
and mails a MySQL table in CVS.
HTH!
--
[ joel boonstra | [EMAIL PROTECTED] ]
--
PHP General Mailing List (h
1 - 100 of 247 matches
Mail list logo