code.
Thanks for your time.
Nathan Maki
_
See when your friends are online with MSN Messenger 6.0. Download it now
FREE! http://msnmessenger-download.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http
I'll second that one... always better to code with register_globals = Off and E_ALL
reporting level
IMHO.
# Nathan
- Original Message -
From: "Philip Olson" <[EMAIL PROTECTED]>
To: "Maxim Maletsky (PHPBeginner.com)" <[EMAIL PROTECTED]>
> To st
scripts that behaved differently than I though
because I was
looking for the value of $foo and not realizing that my $foo was grabbing my session
data instead of
what I thought I was assigning it to. I changed my php.ini and now I tear out far less
hair this way
;-)
# Nathan
- Original
Fair enough, I suppose at that point it is simply a matter of preference, though I
must maintain my
debug commentary... I really like knowing that the reason my $variable isn't
displaying anything is
because I speeled it $varaible. :-)
Cheers,
# Nathan
- Original Message -
ting has really messed me up
on occasion.
I'll unset a value and then implode my array (say a list of numbers), and end up with
a string like
so:
1,233,642,,234,5632,
Where I've unset the 4th and last keys. Which of course really messes up and explode.
# Nathan
- Original Messag
;
}
?>
If you're running an older version, it should output:
0 = zero
1 =
2 = two
3 = three
Versions 4.1.X+ should completely remove key 1.
Cheers,
# Nathan
- Original Message -
From: "Lars Torben Wilson" <[EMAIL PROTECTED]>
To: "Nathan" <[EMAIL P
you have is
defined...
Cheers,
# Nathan
- Original Message -
From: "Rasmus Lerdorf" <[EMAIL PROTECTED]>
To: "baldey_uk" <>
Cc: <>
Sent: Friday, April 26, 2002 6:41 PM
Subject: Re: [PHP] Variables not working
Turn on register_globals in your php.ini fil
t and it'll
spit out the result resource. Something like:
function sql_query($sql) {
$result = mysql_query($sql) or exit("Query failed. Error:
".mysql_error()."".$sql);
return $result;
}
This will save you a lot of time searching for what broke! :-)
Cheers,
# Na
ing something
very wrong trying to reference the data... Anyone got ideas here?
Many thanks!
# Nathan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
o be running fine on this machine; I even got Zend
Optimizer
working for once! Any ideas?
Thanks!
# Nathan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Da. It will create a 3D array, so you would reference the data via:
echo $_GET["myarray"][0];
// returns "one";
echo $_GET["myarray"][1];
// returns "two";
...
Or, if you put this in a form, use _POST instead of _GET.
- Original Message -
From: "wm" <[EMAIL PROTECTED]>
To: <[EMAIL PROT
Sorry, I have my brain set on sessions today... The serialize idea presented suggested
by Miguel is
a good way to do it.
- Original Message -
From: "Nathan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; "PHP" <[EMAIL PROTECTED]>
Sent: Thursday,
ouldn't hurt to try :-)
Cheers,
# Nathan
- Original Message -
From: "PossumPal" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, June 02, 2002 12:40 PM
Subject: [PHP] mysql_select_db problem
Hi,
I'm a newbie, so please have mercy on my silliness
. Thank you for your brilliant insights to this
question.
Nathan Cassano
ContractJobHunter
Web Developer
I need to create an authentication hash based on the user agent, to
connect to a server but I need PHPs User Agent, which is usually
something like PHP/4.0.X. Is there a variable or way to get this? Thank
you.
I personally try and avoid using Perl when I can. Perl is difficult to
learn to write proficient code in. Perl's moto is, "There is More Than
One Way to Do It" which also mean there are more than a million ways to
mess up. Depending upon the programmer Perl can be a write-only
language. You can ev
Hi, I just had a random thought as I was working on some php and perl
code today and I ask, has anyone out there created a PHP to Perl
converter? Similar to the ASP to PHP converter. I think only God could
make a Perl2PHP converter.
--
PHP General Mailing List (http://www.php.net/)
To unsubscri
Try this..
-Original Message-
From: Scott Fletcher [mailto:[EMAIL PROTECTED]]
Sent: Monday, September 24, 2001 9:46 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Modem communcation using PHP
Hi ya all!
I can't find the PHP documentation on using the php code to
initalize,
configure, da
Short answer. http://www.php.net/manual/en/function.flock.php
-Original Message-
From: Kmarada [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 02, 2001 11:53 AM
To: [EMAIL PROTECTED]
Subject: [PHP] fopen
is it possible to use fopen to open 5000 files differents simultaneous
and edit
Here are some simple xor encoding functions that I wrote. This will keep
the average joe from peaking at your data.
function decode($data){
$data = base64_decode($data);
/* XOR data */
for($i = 0; $i < strlen($data); $i++){
$data[$i] = ~ $data[$i];
Here's the issue. I use MySQL as my database backend. I used to have php
running
fine and I used phpMyAdmin to do any admin functions I needed to on MySQL.
I recently upgraded to MySQL 5.x and ever since I've gotten the following
error messages.
When I try to use extension=php_mysqli.dll
This er
We're running into the same problem. It was quite convenient to use
date("Y-m-d",strtotime($dateField)) to process date data for MySQL. Worked
fine for my news management system, since I work with current dates, but my
colleague is using it for an application submission system, and needs
birthdates
a value of "selected"
$$interest = "selected";
print("- Select One -\n");
print("Teacher\n");
print("Lego Enthusiast\n");
print("Student\n");
print("Homeschool Parent\n");
print("Browsing\n");
print("Aftersc
> // buildSelect -- return a Select box named $selectName based on key
value array $selectArray
> ...
> // $arr = array('MD'=>'selected','DC'=>'','VA'=>'');
How are you able to quickly and painlessly determine which key gets the
selected value, from form submission data, when building the initial
From: "Johnson, Kirk" <[EMAIL PROTECTED]>
> Do you know what happens here if the error reporting is set to max?
> Are a bunch of "unitialized variables" warnings issued?
That would be my assumption. I suppose you could initialize the variables
first to circumvent that. I was more or less looking
lications. But I like
that method very much!
[ Nathan Cook | [EMAIL PROTECTED] ]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
to display 's and "s in a variable without php adding the
\??
--
Nathan Kline
i.e. Man in the Box
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
most secure solution but there are some
ways to secure it through data validation.
Does that make sense?
Hope so,
Nathan Cook
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hi PHP folks,
I have a program that sends out email by making socket
connection to our email server. The problem is that the program is very
slow because it has to finish talking to the email server until it can
proceed with the next email (as opposed to the mail() function that just
fork
I am having a lot of trouble with the $_name, $_size, and $_type
variable extensions. I have a basic file upload system however it is
within a function. Sometimes when I declare the aforementioned
variables in a global statement such as global $file_name I can get a
value for _name, other times,
$Size/1023;
$Size = number_format($Size, 2);
$Size = $Size." mb";
}
$type = GetExtension($row[filename]);
if($type == "jpg" or $type == "gif" or $type == "png" or $type == "txt" or $type ==
"sql")
$details = "Details";
else
$det
As a general rule it is always good to store data that is secure in a encrypted
format. My website for example uses a mysql database and I store the encrypted mysql
password in the cookie so I get somethign like 435gcg34tsskhj57 to equal 123. It's
far more secure because cookies are on the u
Hmm, I haven't heard of such a thing. That's kinda weird though because just yesterday
I modified my timeout settings for my script that parses logfiles that are several
thousand lines long, and it worked. Did you perhaps forget to reboot the server? If
you have my suggestion is perhaps taking
Perhaps you could try a cURL or some other FTP approach?
- Original Message -
From: Jeff Bearer
Sent: Saturday, June 15, 2002 11:16 AM
To: [EMAIL PROTECTED]
Subject: [PHP] saving a jpeg via HTTP
What is the best way using only PHP to grab a image file off a website a
d save it locally?
The 3rd parameter is an optional time to expire parameter, if you don't want to set
it, leave it out. setcookie(cookiename,"value"); works fine
- Original Message -
From: Lazor, Ed
Sent: Saturday, June 15, 2002 11:48 AM
To: php-general
Subject: [PHP] Can't set a cookie?
Hi Everyone,
This is all really straight forward stuff. Here's some code that will get the file
parsed to an array, what you do from there is up to you.
Note: if you have a precise structure for your lines you can say to read from point a
to b using substr(). For example, let's say the first name is exa
- Original Message -
From: "Fargo Lee" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, June 12, 2002 4:14 PM
Subject: [PHP] How do I hide download link ...
> Hi, my customers go through a password authentication to access a link on
my
> site to download a file. I want to pr
has a non specific
name.
//Step 3: Update Location (don't want to lose the location)
$query = "update file_locations set location=$newlocation where
file_name='secure.zip'";
mysql_query($query)
Best of Luck to you,
Nathan Taylor
ModDev.net
Please do not click yes when it asks you to send the reciept on the email
about hiding a download link, I hadn't realized the reciept function was on
and it's really getting annoying.
Cheers,
Lakario
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/uns
> if (!session_is_registered("SESSION")){
> print ("You must Log-In to access this page\n");
> print ("");
> print ("Click here to Log In");
> }
print ("");
should be:
print("Sign-in"); // or something like that
But anyways, I don't think that's quite what he wanted. I t
Open your browser, right click and hit properties on any page.
- Original Message -
From: "Brian McGarvie" <[EMAIL PROTECTED]>
To: "Nathan Taylor" <[EMAIL PROTECTED]>; "Bret L Conard" <[EMAIL PROTECTED]>;
<[EMAIL PROTECTED]>
Sent: Tu
on.
Can anyone offer ideas? I have already tried both declaring an absolute path and
checking the variables arlready.
Thanks,
Nathan Taylor
']. Somehow this doesn't seem quite right
to me. Granted, it still works just as well but it sort of breaks the traditional
naming structure for an array and really jumbles the logical flow of things. Do you
think this is worth reporting?
Regards,
Nathan Taylor
ze() function. That function takes
the integer which is your total size of the directory and converts it into a nice
formatted number either in kb, mb, or gb accordingly. You'll find it uses true file
size as well, not "industry standard" sizing.
Enjoy,
Nathan Taylor
- O
Are you looking to make a new HotScripts style website or just a similar menu system?
- Original Message -
From: Ryan A
To: [EMAIL PROTECTED]
Sent: Saturday, October 04, 2003 9:28 AM
Subject: [PHP] hotscripts style program
Hey,
Anybody have any code or links to explain ho
Does it continuously ask or just twice? I've found a weird issue with .htaccess where
if the domain name is a mask for a subdomain host and you try to access an .htaccess
protected page it will prompt you for the password, redirect you to the subdomain and
then prompt you again.
N
WTF is this?
- Original Message -
From: Francis Weeny
To: [EMAIL PROTECTED]
Sent: Wednesday, October 08, 2003 10:30 PM
Subject: [PHP] Congratulations You Win
SUNSWEETWIN PROMO LOTTERY,THE NETHERLANDS.
ALFONSTRAAT B56,
1002 BS AMSTERDAM, THE NETHERLANDS.
TO THE MAN
ating a
credit cards with both preprocessing by the form to determine the pattern validity and
post processing by a bank to confirm the actual card validity.
Your help would be greatly appreciated.
Best Wishes,
Nathan Taylor
doesn't
make the process any easier.
Edward Dudlik
Becoming Digital
www.becomingdigital.com
- Original Message -
From: "Nathan Taylor" <[EMAIL PROTECTED]>
To: "php-general" <[EMAIL PROTECTED]>
Sent: Wednesday, 08 October, 20
I'll take a look through that and do as much further research as is possible. Thanks.
- Original Message -
From: Craig Lonsbury
To: Nathan Taylor ; php-general
Sent: Wednesday, October 08, 2003 4:04 PM
Subject: RE: [PHP] Credit Card Validation
this is a good explan
Sure, this isn't tough at all as long as you keep track of your times.
When the user logs in store the time() in a cookie or database. Then to check the time
since do this
\n";
echo "Then: ".date("m/d/y g:ia", $timesince)."\n";
?>
That should be right, I think...
- Original Message
Look into JpGraph, it rocks my world.
http://www.aditus.nu/jpgraph/
Nathan
- Original Message -
From: rick rice
To: [EMAIL PROTECTED]
Sent: Thursday, October 09, 2003 2:30 PM
Subject: [PHP] Need Charting Utility
Can anyone suggest a good charting utility for PHP running
$PHP_SELF is a variable that is a variable that has limited scope and as a rule of
thumb should never be used. It is a very sloppy way to code. I advise you stick to
$_SERVER['PHP_SELF'].
- Original Message -
From: Boris Sagadin
To: [EMAIL PROTECTED]
Sent: Monday, October 20,
Are you looking for something that job listings are added to by companies or something
that crawls the web for listings?
Nathan
Hey guys,
Just a quickie: where are the archives for this list? What URL?
Thanks,
Nathan Taylor
Thanks John and and Chris.
- Original Message -
From: John Nichel
To: [EMAIL PROTECTED]
Sent: Wednesday, October 22, 2003 2:26 PM
Subject: Re: [PHP] Archives
Nathan Taylor wrote:
> Hey guys,
>
> Just a quickie: where are the archives for this list?
for the new line character.
Horizontal Tab - define("T", chr(9));
New Line - define("NL", chr(10));
Cheers,
Nathan
- Original Message -
From: Robert Cummings
To: Shawn McKenzie
Cc: PHP-General
Sent: Thursday, October 23, 2003 10:30 PM
Subject: Re: [PHP]
Perhaps $_SERVER['REQUEST_URI'] in combination with $_SERVER['QUERY_STRING'] ?
Nathan
- Original Message -
From: Hanuska Ivo
To: [EMAIL PROTECTED]
Sent: Friday, October 24, 2003 6:10 AM
Subject: [PHP] HTTP request contents
Hi everyone,
I need to
;s make sure it isn't used.
ini_set('arg_separator.output', '&');
Cheers,
Nathan Taylor
- Original Message -
From: Burhan Khalid
To: [EMAIL PROTECTED] ; [EMAIL PROTECTED]
Sent: Friday, October 24, 2003 3:43 PM
Subject: Re: [PHP] w3c-compliant for
Undefined index: _blah_ in _blah_." Most of these are array indices in
super globals such a $_GET, $_SESSION, etc. How can I get rid of these little buggers?
Thanks,
Nathan Taylor
Sure Jon, pimp Daeken's channel...
BinaryPHP is not what he needs
Nathan
- Original Message -
From: Jon Kriek
To: [EMAIL PROTECTED]
Sent: Friday, October 31, 2003 4:11
PM
Subject: [PHP] Re: IRC
server: irc.freenode.netchannels: #phpfreaks, #php,
#bina
They tend to use dlls and the sort, but that question is rather inappropriate for this
list...
- Original Message -
From: John Ryan
To: [EMAIL PROTECTED]
Sent: Saturday, November 01, 2003 12:33 PM
Subject: [PHP] Web Applications and C++?
I assume sites like Amazon and Ebay
Why must the powers that be create such mind-bendingly painful terms such as these?
They are the sort of things that send my brain into an infinite loop.
Nathan
- Original Message -
From: Joachim Krebs
To: [EMAIL PROTECTED]
Sent: Saturday, November 01, 2003 3:23 PM
Subject
Why must the powers that be create such mind-bendingly painful terms such as these?
They are the sort of things that send my brain into an infinite loop.
Nathan
- Original Message -
From: Joachim Krebs
To: [EMAIL PROTECTED]
Sent: Saturday, November 01, 2003 3:23 PM
Subject
Your html is very sloppy actually.
Use:
$xyz = 'Hello World';
echo '';
- Original Message -
From: Daniel Clark
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Tuesday, November 04, 2003 6:49 PM
Subject: Re: [PHP] text input truncated
> $xyz = "Hello World";
>
>
hrough one level at a time up a to 100 or something like
that, shrinking the text gradually and building off the same center each time.
Try it and tell me what happens, I am curious.
Cheers,
Nathan
- Original Message -
From: Siddhartha Lahiri
To: [EMAIL PROTECTED]
Sent: Saturday
sleep() should do what you need.
www.php.net/sleep
Regards,
Nathan
- Original Message -
From: Donpro
To: php list
Sent: Monday, November 10, 2003 12:49 PM
Subject: [PHP] Pausing in PHP
Hi,
Is there a PHP function that would allow the script execution to pause
Hello,
Zend in no way dictates PHP, they are simply a major player in it's development and
are just as important as the PHP community. Zend develops much of the core extensions
for PHP but at the same time, they do not own or even run.
Nathan
- Original Message -
From: John
Well that's all good and grand but why increase the size of the distribution when it's
not necessary to? Nobody wants to download something they don't necessarily need
included.
Nathan
- Original Message -
From: John Smith
To: [EMAIL PROTECTED]
Sent: Saturd
That's simple, just modify your Apache httpd.conf on the line where it says something
along the lines of:
AddType application/x-httpd-php .php4 .php .php3 .inc
change it to:
AddType application/x-httpd-php .php4 .php .html .php3 .inc
- Original Message -
From: BennyYim
To: [EMAI
This shouldn't have anything to do with your server config, but rather the forms
themselves.
What method are you sending the form(s) with?
Nathan
- Original Message -
From: b b
To: Jay Blanchard ; [EMAIL PROTECTED]
Sent: Tuesday, November 18, 2003 4:24 PM
Subject: RE:
There is nothing special to be done with the form itself for it to support file
uploading aside from supply a browse field:
As for uploading it, here's some untested code:
if(!empty($_FILES['file']['tmp_name'])) {
$name = strtolower(eregi_replace('#| |\?|!', '', $_FILES['file']['name']))
There is nothing special to be done with the form itself for it to support file
uploading aside from supply a browse field:
As for uploading it, here's some untested code:
if(!empty($_FILES['file']['tmp_name'])) {
$name = strtolower(eregi_replace('#| |\?|!', '', $_FILES['file']['name']))
Oh and also, don't forget to set: enctype="multipart/form-data" in the tag.
Nathan
- Original Message -
From: Nathan Taylor
To: PAUL FERRIE ; [EMAIL PROTECTED]
Sent: Saturday, November 22, 2003 2:20 PM
Subject: Re: [PHP] Form with browse for file to upload &qu
Glad to be of service. =)
- Original Message -
From: PAUL FERRIE
To: [EMAIL PROTECTED]
Sent: Saturday, November 22, 2003 3:52 PM
Subject: [PHP] Re: Form with browse for file to upload "ftp"
Got it working :)
thanks for the help
Paul
"Paul Ferrie" <[EMAIL PROTECTED]>
There is a nice function called sendmail available in the comments on php.net/mail. I
use that regularly as it inserts all the necessary headers and supports multiple
attachments. It's well worth considering...
Nathan
- Original Message -
From: Eugene Lee
To: [EMAIL PROT
You're not making any sense my friend. If you want to fill form field then supply them
with a value="" value. There's nothing more to it.
- Original Message -
From: Anonymous
To: [EMAIL PROTECTED]
Sent: Wednesday, November 26, 2003 5:37 AM
Subject: Re: [PHP] PHP script that f
I believe... that the .bat file MUST be on the server for PHP to execute it.
Nathan
- Original Message -
From: Reidar Solberg
To: [EMAIL PROTECTED]
Sent: Sunday, November 30, 2003 1:10 PM
Subject: [PHP] Accessing .bat file from PHP
I want to start a .bat file on my local
Hello,
BinaryPHP is still at a dev state and is incomplete, if you're having specific
problems try stopping by #binaryphp on freenode and talking to Daeken there regarding
them.
Best Wishes,
Nathan
- Original Message -
From: Volvo
To: [EMAIL PROTECTED]
Sent: Friday, Dec
When you say remote host do you mean the server executing the script or the person
accessing it?
If you mean the latter, it is not possible.
- Original Message -
From: Ivone Uribe
To: [EMAIL PROTECTED]
Sent: Tuesday, December 09, 2003 5:44 PM
Subject: [PHP] run a command on a
No, but HotScripts.com and PHPClasses.org (><) will have classes to do them. I'm a
fan of BosDates (can be found on HotScripts.com), but I think it might cost something
to get it.
Cheers,
Nathan Taylor
- Original Message -
From: Carles Xavier Munyoz Baldó
To: [EMAI
Aye, PHP is compiled by the executable, nothing else- what are you using?
- Original Message -
From: Robin Kopetzky
To: PHP General
Sent: Monday, January 19, 2004 10:32 AM
Subject: [PHP] Debug code
Good morning!
Is there any way to keep the compiler from adding 'debug co
Nevermind, cybercash.com has an MCK (Merchant Kit) that has the libs in it.
Thx, though.
-nc
---
.:: Nathan Cook- Network/Security Admin
office: 208.343.3110 - Web Programmer
email
BC Math, Arbitrary Precision Numbers?
Can someone shed some light on these functions for me?
Thanks.
---
.:: Nathan Cook- Network/Security Admin
office: 208.343.3110 - Web
you follow an 8.3 or 8.4
character filename structure you will be fine.
.:: Nathan Cook
- Original Message -
From: "Tait Grove" <[EMAIL PROTECTED]>
To: "PHP GENERAL" <[EMAIL PROTECTED]>
Sent: Tuesday, January 16, 2001 1:01 PM
Subject: [PHP] string replace
Ho
I would put it in the subsequent include page.
if($PHP_AUTH_USER)
{
includes();
}
else
{
print("You are not authorized to view this page");
}
---
.:: Nathan Cook- Network/Secu
If I may make a session download phped.com or find another editor (notepad)
and then use that in conjunction with ftp net drive (look for it on the web
somewhere), it will allow you view the ftp servers drive, copy and paste and
save directly to the server... works very nice.
.:: Nathan Cook
I just do:
$LocalScript = $DOCUMENT_ROOT . $PHP_SELF;
.:: Nathan Cook [ [EMAIL PROTECTED] ] ::.
Systems & Network Administrator :: Programmer
[ phone - 208.343.3110 ][ pager - 208.387.9983 ]
- Original Message -
From: "Karl J. Stubsjoen" <[EMAIL PROTECTED]>
T
I have always wrote code this like:
if(($fname) && ($lname) && ($email))
{ echo "test"; }
Is there an easier way to write the IF line?
Thank You
.:: Nathan Cook [ [EMAIL PROTECTED] ] ::.
Systems & Network Administrator :: Programmer
[ phone - 208.34
As I understand it, echo is somewhat of an language construct and print is a
function.
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, January 26, 2001 11:37 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Echo and Print
I know it is a kind of stupid questio
Here is a solution I can up with to solve all the CR and LF funniness coming
from different web browsers.
$input = ereg_replace("\r\n|\n|\r", "\n", $input);
-Original Message-
From: Brandon Orther [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 02, 2001 9:43 AM
To: PHP User Group
Subject:
You all are a bunch of un-optimizing novices. Just do some bit banging.
i.e.
if(1 & number){
echo "$number is odd";
}else{
echo "$number is even";
}
-Original Message-
From: Brandon Orther [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 05, 2001 12:18 PM
To: PHP User Gro
uot;CyberCash Internet Payment Processing Service to Continue
without Interruption."
Is this incorrect? When you say that it 'died', what are you referring to?
.:: Nathan Cook [ [EMAIL PROTECTED] ] ::.
PCS Edventures.com
Systems & Network Administrator :: Programm
.
Nathan
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Learning to Use Regular Expressions by Example
http://www.phpbuilder.com/columns/dario19990616.php3
-Original Message-
From: Martin Thoma [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 14, 2001 6:12 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Tutorial for RegExpressions
Hi !
Does someo
This question baffles me. Just to clarify do you have at least two radio
buttons on this page and are they both under the same name?
It also could be if the HTML you mailed the list is the same you have in
your generated page then you may want an '=' sign between the value"ind
Random Pronounceable Password Generator
This function generates random pronounceable passwords. (ie jachudru,
cupheki)
http://www.zend.com/codex.php?id=215&single=1
-Original Message-
From: Ashley M. Kirchner [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 1:20 PM
To: PHP-Gene
c6c20666163696c697461746f72732073686f756c64207363686564756c652074696d6520746f207
4616b652074686973206164646974696f6e616c20636f757273652e7870
And I don't know what type it is. It is it a binary string? Can I convert it
to text and if so, how?
Thank You,
Nathan Cook
[EMAIL PROTECTED]
--
PHP General Mailing
>From a field in an instantdb database (http://instantdb.enhydra.org)
Nathan Cook
[EMAIL PROTECTED]
- Original Message -
From: "Anuradha Ratnaweera" <[EMAIL PROTECTED]>
To: "Nathan Cook" <[EMAIL PROTECTED]>
Cc: "Php List" <[EMAIL PROTECTE
Thank you, for your help it works great!
Nathan Cook
[EMAIL PROTECTED]
- Original Message -
From: "Rudolf Visagie" <[EMAIL PROTECTED]>
To: "Nathan Cook" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, May 02, 2001 4:47 AM
Subject:
1 - 100 of 2379 matches
Mail list logo