> Can we know clients' hard disk number with a phpscript. If yes what is the
> code?
of course no, because php is running on the server ;)
----
--
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.de
--
PHP General M
ur e-mail
> address with the word REMOVE in the subject line. This e-mail must be from or
> contain the address you wish to have removed.
--
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.de
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
everyone can execute shell commands via system(); on your server.
-> delete the script ;)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
usr/sbin. why is it so.
> __
> Do you Yahoo!?
> Yahoo! SiteBuilder - Free, easy-to-use web site design software
> http://sitebuilder.yahoo.com
----
--
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.
PHP-Code:
eval('?>'.$string)
Vars:
eval('$string="'.str_replace('"','\\"',$string).'";');
> Is it possible to put PHP code in eval ?
> Or just vars ?
> $string = 'The result of &g
you could setup a cronjob running as root which chowns the files.
or maybe you can so something with sudo
--
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.de
--
PHP General Mailing List (http://www.php.net/)
To
the tswebeditor ist not bad:
http://194.112.147.2/tswebeditor/index/index/en
--
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.de
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http
Hi all!
Is it possible to have PHP creates an image that graduates 1 color to
another, such as create and images 100 pixels wide and in height which
fades red to green top to bottom?
Any help or suggestions would be really helpful.
Thanks
Adrian
[EMAIL PROTECTED]
Hi all!
Is it possible to have PHP creates an image that graduates 1 color to
another, such as create and images 100 pixels wide and in height which
fades red to green top to bottom?
Any help or suggestions would be really helpful.
Thanks
Adrian
[EMAIL PROTECTED]
(new Object());
> }
> window.open = SymWinOpen;
//-->>
>
>
--
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.de
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
gt; username/password box?
----
--
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.de
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
you could try
header('Content-Disposition: inline; filename=test.doc');
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
oops, i thougt you wanted it opening in the browser.
i don't think there is a way to open it directly outside the browser,
because if this would be possible someone could do so with a virus
.exe, too.
> .. but this is opening word document inside the web browser which is not
> acceptable in my cas
try this:
ob_start();
$oldlevel=error_reporting(0);
highlight_file($file);
error_reporting($oldlevel);
$buffer = ob_get_contents();
ob_end_clean();
$buffer = str_replace("", "", $buffer);
$buffer = str_replace("", "", $buffer);
$buffer = preg_replace("//i","",str_replace
> $success = fwrite( $fp, "$POST_['news']" );
> which looks ok to me. When I take out the " " around $POST_['news'] it
> doesn't generate an error, but then it doesn't write anything to news.txt.
> news.txt is owned by no
lol variables in quotes - especialli when there is only the variable
are really ugly.
you should use $_GET[$username]...
> Use double quotes:
> $_GET["$username"];
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
it might be more efficient.
> -Rasmus
-
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.de
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
conn); ?
because if i have to connect to the mysql server again from my
extension, i'll lose the performance-improvement gained from the
faster C++-code.
--
Adrian
mailto:[EMAIL PROTECTED]
www: http://www.planetcoding.net
www: http://www.webskyline.de
--
PHP General Mailing List (htt
I would remove bad scripts like *Nuke.
Their code just sucks and has really lots of bugs.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Don't waste CPU power of shared servers for video recoding.
If you need that, get a dedicated server without other customers who
would probably be affected by you using lots of cpu power.
Besides that, if you cannot install own (compiled) software on it,
you'd have to use a pure php solution which
Use glob() to get a list of matching afiles nd then unlink() them
separately.
> I need to delete a file with any file extension where i know the
> name of the file, is it possible to use regular expressions with the unlink
> function?
--
PHP General Mailing List (http://www.php.net/)
To unsub
error_reporting(E_ALL);
Then you will get a notice when you try to read a variable which
doesn't exist.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Just make your template engine compile templates to "native" php code.
i.e. write a parser which replaces {if $foo}{$var}{/if} with
templateVars['var'];?>
To check if the template must be recompiled, just compare filemtimes.
The assign function could be look like this then:
=
function assign($
$GLOBALS
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
action="module/personal/delete.php">delete);
replace this with
action="module/personal/delete.php">delete;
and remove the ; after } - it's ugly and useless ;)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Is there a way to circumvent this?
My template engine compiles templates to PHP files and this "feature"
makes the output html code look awful sometimes.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Did you even look at the calendar which date we have today?
Correct, April 1st...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
to my PHP is correct)
And the script it calls (email.php) the code is:
#!/usr/bin/php
Adrian
3.0 unknown mailer error 255
-Original Message-
From: Stut [mailto:[EMAIL PROTECTED]
Sent: Wednesday, May 10, 2006 10:51 AM
To: Adrian
Cc: php-general@lists.php.net
Subject: Re: [PHP] How to get incoming emails captured by PHP ?
Adrian wrote:
>I have my aliases file set up with the li
THANK YOU!
That did it, its now working, thank you for your help.
-Original Message-
From: Stut [mailto:[EMAIL PROTECTED]
Sent: Wednesday, May 10, 2006 11:03 AM
To: Adrian
Cc: php-general@lists.php.net
Subject: Re: [PHP] How to get incoming emails captured by PHP ?
Adrian wrote
Hi John
Thank you, I have just got it working now, will look into the different ways
you suggested.
Adrian wrote:
> Hi All
>
>
>
> I have been trying to have PHP capture incoming emails sent to a specific
> email account and have not been able to achieve this, I have s
I think you can use the 'embed' SAPI for that.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
use $_POST['name_of_your_form_field'] or
$_GET['name_of_your_form_field'] or $_REQUEST['name_of_your_form_field']
$_REQUEST contains $_GET, $_POST and $_COOKIE
for server vars there is $_SERVER and $_ENV for environment vars
$_SESSION is for session vars
--
PHP General Mailing List (http://www.p
You must write a PHP extension which calls the function.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
$string = str_replace(' ', ',', $string);
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
check your preg_match() call...
things like "$pattern" and "$msg" are the spawn of satan btw.
there is ABSOLUTELY NO REASON to put variables in quotation marks
except that php has to parse the string which is slower than php just
seeing the variable.
and when a functions expects a reference, "$var
DOS = 16bit
but I guess, PHP ist for 32+ bit ;)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I would prefer to do everything on the server instead of
using js for example in the browser.
Any help would be really appreciated.
Thanks,
Adrian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello,
1.How many tables can be created inside a database? There is a maximum number?
2.Is it possible to erase a table?
Thanks,
Adrian
Hello,
Can I call a php function using forms in the same way as I do for a javascript
function? (in the same page, not with php_self).
.
Thanks, Adrian
;]}";
echo "{$row['close']}";
}
echo "";
Any sugestions if i want to use forms, something like
Thanks, Adrian
wrong?
echo "";
echo "";
/* Connecting, selecting database */
$link = mysql_connect("localhost", "root", "adrian")
or die("Could not connect");
print "Connected successfull
Indeed, now it works, I put the form tag by mistake...
Thanks,
Adrian
- Original Message -
From: "rija" <[EMAIL PROTECTED]>
To: "Adrian Partenie" <[EMAIL PROTECTED]>
Sent: Tuesday, December 03, 2002 11:30 PM
Subject: Re: [PHP] mysql, php, checkbox
&g
Try using htaccess authentication instead?
-Ade
www.phpscriptsearch.com
-Original Message-
From: Jason Wong [mailto:[EMAIL PROTECTED]]
Sent: 05 February 2003 07:06
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Protect Access to a Directory
On Wednesday 05 February 2003 04:06, Pushpinder Sin
Hi,
I have been checking out the books on Amazon.com and it seems there is a
PHP5 book in the works due to be released on March the 4th. Does anyone
know where I can find out information about this new release of PHP,
what changes there are etc?
TIA
Adrian
www.phpscriptsearch.com
--
PHP
hi all,
' .
'CRYPT_STD_DES ' . CRYPT_STD_DES . "\n" .
'CRYPT_EXT_DES ' . CRYPT_EXT_DES . "\n" .
'CRYPT_MD5 ' . CRYPT_MD5 . "\n" .
'CRYPT_BLOWFISH ' . CRYPT_BLOWFISH . '';
echo crypt('clear_pass', '$1$salt1234$');
?>
// outputs
CRYPT_STD_DES 1
CRYPT_EXT_DES 0
CRYPT_MD5 1
CR
No don't use the PHP date function, MySQL has an inbuilt function
exactly for this.
See DATE_FORMAT http://www.mysql.com/doc/en/Date_and_time_functions.html
HTH
Adrian
www.phpscriptsearch.com
-Original Message-
From: Chris Hayes [mailto:[EMAIL PROTECTED]
Sent: 25 February 2003
trying to contact various people within the PHP group without
any success at all.
HTH
Adrian
www.phpscriptsearch.com
-Original Message-
From: Niels Andersen [mailto:[EMAIL PROTECTED]
Sent: 02 March 2003 13:31
To: [EMAIL PROTECTED]
Subject: [PHP] Where to publish extension?
Hello!
I have
you close the input file in while loop ( fclose($fp); )
"Bryan Koschmann - Gkt" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Can someone give me a hand here? I am really lost as to what is
going on.
> I have a file that looks like this
>
> user1,Store 1 - ABC street
> user2,Store
Yes until a user comes along with JS disabled.
Ade
www.phpscriptsearch.com
-Original Message-
From: Niklas Lampén [mailto:[EMAIL PROTECTED]
Sent: 07 March 2003 14:04
To: 'Php-General'
Subject: RE: [PHP] javascript
Advantage is obvious!
If there is a field user didn't fill up, you can
", "$0")[""])', $u);
but that isn't syntactically correct. I know that this is possible to
remedy using a user function but I do this kind of thing very often
(grab the contents of an array value in one line of code) and want to be
able to do it without splitt
_mmc.htm
Hope this helps
Adrian
sourceguardian.com
> -Original Message-
> From: Jon Shoberg [mailto:[EMAIL PROTECTED]
> Sent: 14 July 2003 14:23
> To: [EMAIL PROTECTED]
> Subject: [PHP] PHP, server load and optimize
>
>
>
> Is there a way to execute a few
I would like to be able to point PHP to a URL and for it to create an
"image" (like a screenshot) of that website. We are putting together a
"useful links" section for a client and to have this facility would be
great. Anyone done this sort of thing before? Any ideas would be very
useful
Thanks
re info !!!
>
> Regards,
> Hamid Hossain
>
> Original Message Follows
> From: "Adrian Teasdale" <[EMAIL PROTECTED]>
> Reply-To: <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Subject: [PHP] Automatically creating an image of another w
OK, thanks for this suggestion Jason. I'll try it and see and then see if I
can find any alternative
Best regards
Adrian
> -Original Message-
> From: Jason Wong [mailto:[EMAIL PROTECTED]
> Sent: 14 July 2003 20:34
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] Autom
I might be wrong (it's been known in the past!) but I think that theirs
supports 4.3.x
Best regards
Adrian
sourceguardian.com
> -Original Message-
> From: Michael Rubin [mailto:[EMAIL PROTECTED]
> Sent: 17 July 2003 10:30
> To: [EMAIL PROTECTED]
> Subject: [PHP] zend
In order to use the set_cookie method to kill a session_id you need to
specify the name of the session, you have used 'user_info' but nowhere in
your code do you specify the session_name("user_info") as the sessions name.
HTH
Ade
-Original Message-
From: Chris W. Parker [mailto:[EMAIL PRO
Chris,
As I said, you are not calling your session user_info, the only way to name
a session is to use session_name() BEFORE session_start() if you are not
using a session_name call then change your setcookie call to the following
and this should kill it for you:
setcookie(session_name(),"","","/
to do. I know that this isn't the answer that
you were expecting, but it's the approach that I would take
Adrian
sourceguardian.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Adrian
sourceguardian.com
> -Original Message-
> From: Binay Agarwal [mailto:[EMAIL PROTECTED]
> Sent: 26 July 2003 01:04
> To: [EMAIL PROTECTED]
> Subject: [PHP] Which templates to use??
>
>
> Hi all!
>
> As a php developer i need to know how can i
I'd just like to say that I've found this discussion to be very interesting
and enlightning. It also makes a change to see people not "microsoft
bashing" but taking an objective view on everything. We keep getting more
and more requests to develop products for .net because our clients want
softwa
Hi everyone,
I am currently installing mod-rewrite to change all of my URL's from:
www.domain.com/category.php?ID=1
To
www.domain.com/category_name.html
So that they are more search engine friendly. However one problem I face
is that I cannot think of any way to write the session ID which woul
Hi Mike,
Try my web site www.phpscriptsearch.com there are a couple of Banner
Management utilities under the Ad Management Category.
HTH
Ade
-Original Message-
From: MIKE YRABEDRA [mailto:[EMAIL PROTECTED]
Sent: 20 March 2003 17:00
To: PHP List
Subject: [PHP] Banner ad solution?
Can
Hi Tim,
I did something similar recently but I had a bit more info stored than
just an e-mail address, so I set-up a search system for the client
whereby he could e-mail all of the people in the search result set.
Just a thought that might give you some ideas for your situation.
HTH
Ade
www.phps
e and print it to be sure basics work
$TestPrint="Print this out
then..\n";
echo($TestPrint);
?>
Is there something I've missed in the script. Or perhaps Apache 2 is the
problem?
Thanks
Regards
Adrian Greeman
Telephone +44 20 8672 9661
Mobile +44 780 329 7447
E-mail
Thank you very much - you are very observant and have just taught me a good
lesson about checking minor errors even outside the obvious PHP code. It
works now except for the
unlink as you said.
Regards
Adrian Greeman
Original Message -
From: "Kevin Stone" <[EMAIL P
hi there
We are currently using Ultimate Affiliate (a series of perl scripts) to run
an affiliate program. We are wanting to move over to a purely-php offering
mainly for integration etc. Does anyone have any recommendations for
affiliate scripts (either paid or open source) whihc are as good, o
Hi
What is the easiest way to find out how long a page takes to load? I have a
client that is concerned about how long the pages are taking and I want to
find some way of analysing it. Is there a PHP script that can do this?
Ade
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe
Hi there
Anyone have a PHP Helpdesk that they'd recommend. We are using Perldesk at
the moment, so want something as good, but preferably better :)
Thanks
Ade
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
y one.
Regards,
Adrian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
The value isn't available until the next page and you should register
with
$_SESSION["name"]=$_POST["name"];
HTH
Ade
www.phpscriptsearch.com
-Original Message-
From: Aris Santillan [mailto:[EMAIL PROTECTED]
Sent: 02 June 2003 11:55
To: Php (E-mail)
Subject: [PHP] session
hi
this co
Hi there
We have been contacted about creating a portal site which will have some
heavy usage. They are talking about having 100,000 subscribed users to the
system which will have the following:
1. Web based email
2. Calender (for the persons own use, not shared)
3. File store (and sharing) an
dependent on
> the hardware you have available.
>
> Also, are you looking for a "single", (semi)-integrated app such as
> Horde, or would you be interested in individual solutions that could
> be merged together?
>
> --- Adrian Teasdale <[EMAIL PROTECTED]> wr
Hi there
We are looking for an open source banner advertising application to
integrate into a site. The site will be getting a LOT of hits, so something
that will scale well, report well and just work well would be useful. Anyone
got any thoughts on their preferred application? I'd be interested i
Chris
If you use a service like geoip I know that they have a list of all the free
email providers and you can check against this database. This is useful as
one tool for anti-fraud checking. Not sure if this is what you were looking
for, but I thought I'd throw it in.
Ade
sourceguardian.com
>
Hi there
We have a requirement to create a robot to search for specific keywords on
the web. Has anyone done this before and have any suggestions as to where we
should start? I don't think that this is a light undertaking! :) Are there
any existing tools out there which can be plugged in to do thi
ut related extension to
the question but I have seen similar in Javascript - namely ---
var evt = (evt ? evt : ((window.event) ? window.event : null);
is this the same notation or something else?]
Regards Adrian Greeman
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, v
Hi there
We are wanting to create a little help/crm tool for internal use. Rather
than reading (and parsing) in an email from a pop account, is it now
possible to pipe email in directly to a database via PHP? If so, any
pointers on how to do it and anything to watch out for?
Thanks in advance
Wow, thanks! A nice detailed reply that should keep me busy for a good few
hours
All the best
Ade
> -Original Message-
> From: John S. Huggins [mailto:[EMAIL PROTECTED]
> Sent: 11 June 2003 23:02
> To: Adrian Teasdale
> Cc: [EMAIL PROTECTED]
> Subject: Re: [PHP] pip
into
subfields separated by
the "=" character. I then need the values, such as "3",
"4", "Y", "N",
"Running", "Queued", etc.
Any help would be appreciated.
Adrian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
er database you create.
>
> On Wednesday, June 11, 2003, at 05:31 PM, Adrian Teasdale wrote:
>
> > Hi there
> >
> > We are wanting to create a little help/crm tool for internal use.
> > Rather
> > than reading (and parsing) in an email from a pop account, i
into
subfields separated by
the "=" character. I then need the values, such as "3",
"4", "Y", "N",
"Running", "Queued", etc.
Any help would be appreciated.
Adrian
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
to do it with javascript u could post the form to
another local page with a form with hidden fields -
send the mail and use onload="" to post the second form.
would be a messy way to do it but would work.
adrian murphy
- Original Message -
From: "Justin French" &l
Hi,
There is a note at http://www.php.net/ChangeLog-4.php for Version 4.2.0
(Note: Apache2 support is EXPERIMENTAL.)
Is it still justified?
adu
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
At http://www.php.net/ChangeLog-4.php#4.2.0 there is a note (Note: Apache2
support is EXPERIMENTAL.)
Is this note still justified for PHP/4.2.2? Is it about security?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
thats xhtml - it's xml comliant html.
tags must be closed so a tag like which didn't
have a closing tag is written
so,for example in php the nl2br() function now produces
instead of the old
- Original Message -
From: "Victor" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday,
make sure there is no whitespace before first
To: "PHP" <[EMAIL PROTECTED]>
Sent: Friday, September 06, 2002 11:34 AM
Subject: Re: Fw: [PHP] question about Location
> Put your code that takes care of the post before the line 2, output the
> header and exit. Like this
> if($_POST['submit'])
add nl2br() to make it look pretty e.g
- Original Message -
From: "Roman Duriancik" <[EMAIL PROTECTED]>
To: "PHP-General" <[EMAIL PROTECTED]>
Sent: Friday, September 06, 2002 11:53 AM
Subject: [PHP] Source code
> How I show in IE source code of html page with php ?
>
>
> roman
>
ut my server admin.
tia,
adrian
Hi,
I'm kinda new to PHP and have the following problem: In a function, I want
to verify whether a
file exists before I go on, and if it doesn´t, return false and stop right
there. So I tried
if(!file_exists($my_file)) {
return false;
exit;
}
But since $my_file is a URL, it doesn´t work. Does a
nx to supprt .php files?
(i get a better response from them if i tell them exactly what to do ;-) )
tia
adrian
immediately) to be cached, take a look at XML. Besides, once you
CAN exchange your stuff with others, you might come across new ideas to
improve your whole site!
Regards,
Adrian Slusarczyk
"Simon Taylor" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
414B25821CCAD6
at I want is to press on the
id from a row in upperframe table and to display in lowerframe the tableID. How can I
do that?
Thanks a lot,
Adrian
at I want is to press on the
id from a row in upperframe table and to display in lowerframe the tableID. How can I
do that?
Thanks a lot,
Adrian
with php tags for example.
Does Java and other stuff too.
Lots of plug-ins endlessly under development
And it's FREE.
I have it plugged in as the external text editor of choice with Dreamweaver.
Regards
Adrian Greeman
Telephone +44 20 8672 9661
Mobile +44 780 329 7447
e-mail:-
[
hi,
how come when i make a dir thus
mkdir($basedir,0777);
cute can't then chmod or delete said dir.
also vice versa : when i create a dir with cute
with 777 access php can't do anything with it.
it's very annoying.
don't understand why that was not needed with a string.
I am also unclear what happens when you send something using header() -
does that also go into an array - if so which one and how do I use it?
This may all seem unecessarily complicated but I am not yet au fait with the
whole thing.
whats wrong with this.
it's getting stuck somewhere
function urls_clickable($string) {
for($n=0; $n < strlen($string); $n++)
{
if(strtolower($string[$n]) == 'h') {
if(!strcmp("http://";, strtolower($string[$n]) . strtolower($string[$n+1]) .
strtolower($string[$n+2]) . strtolower($string[$
relax friend.i was just asking
- Original Message -
From: "1LT John W. Holmes" <[EMAIL PROTECTED]>
To: "Adrian Murphy" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Wednesday, July 03, 2002 2:08 PM
Subject: Re: [PHP] whats wrong with this functi
n
> On Wednesday, July 3, 2002, 1:47:05 PM, "Adrian Murphy" wrote:
> > whats wrong with this.
> > it's getting stuck somewhere
>
> "Somewhere" isn't very helpful. When asking for help be sure to include as
much
> information as possilble.
1 - 100 of 404 matches
Mail list logo