Hi again,
These scripts get there email-info from a database. How many mails send per
action depends on the max_execution_time set by your provider. Each send
mail is marked in the database so if the process stops to "early" you can
continue with the rest and unmarked.
Web invent
Nop!
At 16:36 05/12/01, you wrote:
>Michael,
>
>I'm designing a membership mail-out service right now - and wanting db
>'recorded delivery'.
>Are your scripts available in one of the online script-libraries?
>
>Please advise,
>=dn
>
>
>-
At 03:41 PM 12/5/2001 -0500, Jordan wrote:
>Is there any way to pass a multi-dimenstional through a url. something like
>/cart.exe?item[1][1]=3
>
>just curious.
>
>-Jordan
I haven't personally done this myself, but theoretically you could
accomplish this by first using the serialize function:
I have now located a simple HOW-TO and scripts in a zip at:
http://www.zoon.se/mailing/index.htm
Good luck!
Michael Cronström
Web Inventor
At 00:33 06/12/01, you wrote:
>Perhaps I misunderstood. Are you making scripts available? If so, I'm
>interested in taking a look. If not,
ect DB");
>
> $get_image = "SELECT ImgType, ImgData FROM ImageTable WHERE PKey=$PKey";
>
> $get_image_result = mysql_query($get_image)
> or die ("Unable to get image.");
>
> $binary_junk = mysql_result($get_image_result,0,ImgData);
> $file_type = mysql_result($get_image_result,0,ImgType);
>
iguration -
> > if I use difference browser.
> >
> > IE :
> > 9ff68d81039d9ece3ba9840328b91488
> >
> > Opera :
> > 7aa4895172b5a4785c9fb754eaf792aa
> >
> > NN :
> > 1007630964
>
>
--
Michael Hall
can use as front ends for these packages. I
>went to mysql.com
> and php.net and it seems that i can download both of these packages to my computer
>for free. Any
> help would be greatly appreciated.
>
> Thanks
> Indera
>
>
>
>
--
##
OK guys,
a voting script!
at: http://zoon.se/vote/logo.php
try it :)
Michael Cronstrom
Web Inventor
At 13:26 13/12/01, you wrote:
>I'd kind of ignored this whole thread thinking it was going on and on, but
>in the end I have to say something :)
>
>None of the other "an
At 01:37 PM 12/14/2001 +0100, Tony Arnold wrote:
>start('10');
> html-code... I want this to be repeated 10 times.
>end();
>
>This doesn't work but this is how I want it! :-) Anyone?
How about using alternate syntax? For example:
html-code
http://www.php.net/manual/en/control-st
At 07:56 PM 12/15/2001 +, [EMAIL PROTECTED] wrote:
> been using php for a few months now, just wanted to say a big THANK YOU
> to all the developers for such a wonderful language, thanks guys!
Well, I have to second that. If it weren't for PHP I probably would have
never gotten into web d
depends on how elegant you want:
passthru("ls -l | awk '{print $9}' ");//sort by name ascending
passthru("ls -lt | awk '{print $9}' "); //sort by modification time
descending
add -r to the ls command to reverse the order of either sort
instead of using passthru, you could use exec
At 05:53 PM 12/14/2001 +1100, Vincent Ma wrote:
>Hi everyone:
>
> I would like to know how to specific item in array. For the add new item
>to array, we know just :
>
>$array += array("$key" => "$value");
>
>How to remove specific item in array???
unset(array["specific_item_index"]);
...h
At 09:14 AM 12/16/2001 -0500, Yoel Benitez Fonseca wrote:
>Hi!
>
>The following code fragment tries to read a sequence of digits from
>a file but it doesn't work, only the first character is read,
>Which is my error?.
>
>
>$str = "";
>while( ($c = fgetc($this->m_file)) && e
Let´s say the site was attacked, abused or so so we don´t run it
anymore;-|
Anyhow, even I say: "LEAVE IT THE WAY IT IS!!!"
Michael Cronstrom
Web Inventor
[EMAIL PROTECTED]
At 13:36 17/12/01, you wrote:
>Arg
>
>->
>
>
>Not Found T
sub_key=>$value) {
echo $sub_key.": ".$value."";
}
}
?>
\\";
echo "printer: ".$printer."";
$handle = printer_open($printer);
foreach($DATA as $val) {
printer_write($handle, $val);
echo $va
Hi,
Now that register_globals is (or will be) OFF by default (just like
error_reporting) I'm facing a huge rewrite of existing code if my hosting
provider decides that he wants to upgrade his php (and believe me, he will
use default settings)
Is there any way to override register_globals and erro
something like set_register_globals
I haven't got that much experience with playing with variables at this
level.
What would do the trick is something like this:
for all in $_GET
{
$[varname] = $_GET[varname]
}
Could anyone give me some pointers in actually programming this?
Many thanks,
Mich
ewsgroup, thank you all,
Greetz,
Michael
"Richard Heyes" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > for all in $_GET
> > {
> > $[varname] = $_GET[varname]
> > }
> >
> > Could a
nly drawback is that if you need variables on the next
page you'll have to pass them as an URL parameter...
http://www.php.net/manual/en/function.header.php
-
Michael Sims
mhsims at midsou
Use include files to pass your authentication information.
auth.php:
put auth.php in your home directory with you as owner and apache group id
as group, or create a group that contains you and apache user (probably
'nobody').
$> chmod 740 /your/home/dir/auth.php
On Wed, 19 Dec 2001, Daniel
hallo,
my applications generates a html-page, with a link to an image.
this image is created by the application, and should exist only temporarily
- so it can be deleted after being accessed by the html-page - any ideas how
to implement this? is working with timetamps (microseconds) safe for crea
At 01:53 AM 12/21/2001 +1100, Tomasz Jachimczak wrote:
>I am retreiving user information from a database after verification, and
>would like to place certain feilds into a session variable for easy
>access/retreival. I can get the information out of the database, but cannot
>place it into any sort
At 10:19 AM 12/20/2001 -0800, Nathan Cassano wrote:
>And the answer is... WinCVS
>
>Check it our at.
>http://www.cvsgui.org/
And don't forget TortoiseCVS.
http://www.cvsgui.org/TortoiseCVS/index.shtml
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
At 03:39 AM 12/21/2001 +0200, Bogdan Stancescu wrote:
>Hi everybody!
>
>Two things I consider urban myths about PHP (plus MySQL) - please let me
>know what you think of these:
>
>1. The evil global variables
[...]
>My question to you guys is this: does anybody know of a real example of
>reasonably
At 06:03 PM 12/20/2001 -0800, Philip Hallstrom wrote:
> > I've done something similar in the past just for kicks, and I got the same
> > result you did (i.e. an error). I believe this is because mysql_query()
> > expects ONE query at a time and will break if you send two or more. I
> > could be
At 04:26 AM 12/21/2001 +0200, Bogdan Stancescu wrote:
>Philip Hallstrom wrote:
>
> > > A definite possibility, but it does depend on the hacker in question
> > > knowing exactly how your script is written...
> >
> > True, but in a shared hosting environment this is very likely.
>
>...not to mentio
At 04:51 AM 12/21/2001 +0200, Bogdan Stancescu wrote:
> > > > True, but in a shared hosting environment this is very likely.
> > >
> > >...not to mention open source code.
> >
> > Oh yeah. Guess I had a mental lapse there. If you are using, say, a
> > script downloaded from freshmeat.net and it
At 11:28 PM 12/20/2001 -0500, Billy Harvey wrote:
> > Freshmeat.net is a very popular database of linux software and includes a
> > wide variety of PHP scripts. My point was that if you downloaded an
> > insecure script from such a popular site then you are asking for trouble
> > because chances
At 12:13 AM 12/21/2001 -0500, jtjohnston wrote:
>This seems newbie. So what am I doing wrong? I want to print the
>contents of the file. I get resource id #1 instead. Do I need to add a
>header or what?
>
>
>//$fp = fopen ("C:/Program Files/localhost/info.txt", "r");
>//$fp = fopen ("http://compca
At 01:59 AM 12/21/2001 -0500, jtjohnston wrote:
>Michael,
>
>$fp = fopen ("./users.txt", "r");
>while (!feof ($fp)) {
> $buffer = fgets($fp, 4096);
> echo $buffer;
> }
>fclose($fp);
>
>Ok. But $buffer is not an array, is it? Why/what is 4096?
set From: like this -
$mailheaders .= "From: XYZ Company <[EMAIL PROTECTED]>\n";
-Original Message-
From: Peter [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 21, 2001 4:48 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Sendemail appends domain to mail function
Hi,
I have problem.
though...
In pseudo-code:
function makeyogurt ($flavour, $type = 'EMPTY ARRAY')
{ }
Any help would be much appreciated,
Michael
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact t
Or try Popper, a nice standard webmail solution written in PHP.
It must be on freshmeat.net
Michael
"Bogdan Stancescu" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Check these out:
> http://www.horde.org/imp/
> http://twi
At 01:17 PM 12/22/2001 +0100, Michael Jurgens wrote:
>I'm now looking for a way to have the second (optional) argument be an array
>of strings. I can't get it to work though...
>
>In pseudo-code:
>
>function makeyogurt ($flavour, $type = 'EMPTY ARRAY')
>
At 11:32 PM 12/22/2001 +0100, mweb wrote:
>Hello,
>
>I know I can convert a string to all uppercases with the strtoupper()
>function. However, what if the original string contains HTML entities?
>
>EXAMPLE:
>
>original string = "funkstörung"
Try this:
--
PHP General Mailing List (http://www.
At 12:16 PM 12/23/2001 -0800, Ben Ocean wrote:
>Hi;
>I get this error when I try to restart Apache:
>
>Syntax error on line 236 of /etc/httpd/conf/httpd.conf:
>Cannot load /etc/httpd/libexec/libphp4.so into server:
>/etc/httpd/libexec/libphp4.so
>
>The above file does, of course, exist. I'm runni
At 01:11 PM 12/23/2001 -0700, Robert Dyke wrote:
>Hello:
>
>In ASP I can write a Conditional statement like this:
>
><% If $varA == True Then %>
>Straight HTML in here that only displays if $varA == True
><% Else %>
>Straight HTML in here that only displays if $varA != True
><% End if %>
>
>Transl
per' way to import a variable in a script without being
sure it was passed?
(adding a @ to the beginning of the line is not proper you must agree)
Thanks,
Michael
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
At 11:59 AM 12/26/2001 -0200, Julio Nobrega Trabalhando wrote:
> Is that while porting a script to PHP 4.1.0, where I used to check:
>
>if (session_is_registered('del_power') && $del_power == 1) {
> // del stuff
>}
>
> Because $del_power could be registered as 1 or 0, now I can do:
>
>if (
e. Thanks!
--
Michael Champagne, Software Engineer
Capital Institutional Services, Inc.
wk: [EMAIL PROTECTED]
hm: [EMAIL PROTECTED]
**
This communication is for informational purposes only. It is not
intended as an offer or solicitati
ay to work it into a single
dimensional array...
Thanks!
-Michael
--
No, my friend, the way to have good and safe government, is not to trust it
all to one, but to divide it among the many, distributing to every one exactly
the functions he is competent to. It is by dividing and subdividing thes
and check for a variable at the beginning and redirect to the
login page if the var is not found. Does anyone know what's up with this?
Thanks for your help in advance.
--
Michael Champagne, Software Engineer
Capital Institutional Services, Inc.
wk: [EMAIL PROTECTED]
Hi all,
Having a weird problem running the passthru() function on quite an old
version of PHP3 (3.0.7).
Pasted below is the php source code:
===
Tape Status Check
if this page is blank - that is good!
===
When I run this in a shell (
surely it should be limit 0,4
(0,1,2,3,4) = 5 items!
remember 0 is row 1 not 1
""Dennis Haller"" <[EMAIL PROTECTED]> wrote in message
99cs5b$bj4$[EMAIL PROTECTED]">news:99cs5b$bj4$[EMAIL PROTECTED]...
> Hi all, im using the following scripts:
>
> include("connect.php");
>
> $query = "SELECT thre
if this message duplicates - sorry. some weirdness on my news client!
dennis, i think your limit should read 0,4
because 0 is actually row 1 (we count from 0 not 1)
so limit 0,4 gives you rows 0,1,2,3,4 - which is 5!
not 4!
""Dennis Haller"" <[EMAIL PROTECTED]> wrote in message
99cs5b$bj4$[EMAI
Is there a reason Freshmeat is showing a banner stating "PHP 4.01pl2 is
out"? Especially since the binary is up to 4.04pl1.
Michael Geier
CDMSports Systems Administration
EMail: [EMAIL PROTECTED]
Phone: 314.991.1511 x 6505
--
PHP General Mailing List (http://www.php.net/)
To unsu
on. Does
anyone know exactly how this works or can point me to a reference page that
has how this works? Thanks in advance for any replies.
--
Michael Champagne, Software Engineer
Capital Institutional Services, Inc.
wk: [EMAIL PROTECTED]
hm: [EMAIL PROTECTED]
***
obal $HTTP_SESSION_VARS;
session_start();
echo ($HTTP_SESSION_VARS[my_session_var]);
}
I assume this isn't the right way to do it since it doesn't seem to work. I
have register_globals off. Does anyone know what I should be doing?
Thanks in advance for any replies!
--
Michael Champagne
"If track_vars is enabled and register_globals is disabled, only members of
> the global associative array $HTTP_SESSION_VARS can be registered as session
> variables. "
>
> so, did you try this:
>
> session_register($HTTP_SESSION_VARS["my_session_var"];
>
> > session_register($HTTP_SESSION_VARS['my_session_var']);
> > }
>
> Kirk
>
>
> > -Original Message-
> > From: Michael Champagne [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, March 23, 2001 1:32 PM
> > To: PHP General Mailing List
> > Subj
>
> > > function set session()
> > > {
> > > global $my_session_var,$HTTP_SESSION_VARS;
> > > session_start();
> > > $my_session_var = "Blah blah";
> > > session_register($HTTP_SESSION_VARS['my_session_var']);
> > >
hink that would work. For
> instance,
>
> $a="b"
> session_register($a);
>
> actually registers a variable called $b. I made that mistake in my post
> too.
>
>
>
>
>
--
Michael Champagne, Software Engineer
Capital
I can get to it OK.
"Boget, Chris" wrote:
> What's up with the PHPBuilder website? It's been down all day.
> :( Does anyone know?
>
> Chris
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To conta
missions arising as a result of
> transmission. Use of this communication by other than intended
> recipients is prohibited.
> **
>
--
Michael Champagne, Software Engineer
Capital Institutional Services, Inc.
wk: [EMAIL PROTECTED]
hm: [EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.
I noticed the setting session.cookie_secure in my php_info(), but could not
find anything mentioned about it in the documentation. Does anyone know what
this setting does?
--
Michael Champagne, Software Engineer
Capital Institutional Services, Inc.
wk: [EMAIL PROTECTED]
hm: [EMAIL PROTECTED
$user_fields['MINS_TILL_EXPIRE'] *
1/1440))"
I get this error back from PHP:
Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING'
Can I not use my associative array like this?
--
Michael Champagne, Software Engineer
Capital Institution
Something else to investigate could be whether you've passed the db name
to the script. If the the name of the db is different to $user, you'll
need to do something like
$dbname = "whatever";
mysql_select_db("$dbname",$db);
Mick
On Sat, 24 Mar 2001, YoBro wrote:
> What could I possibly be do
Yes it can.
Try serialize() and unserialize() functions.
Mick
On Fri, 23 Mar 2001, Jaxon wrote:
>
> can an array be stored in a database field?
> E.g. make a few runtime settings for a page, store the settings as an array
> in a field, and use that array to make some runtime settings?
>
> F
So tell us?
Mike
-Original Message-
From: Jesper Blomstrm [mailto:[EMAIL PROTECTED]]
Sent: Monday, March 19, 2001 4:51 PM
To: [EMAIL PROTECTED]
Subject: SV: [PHP] PHP vs Servlet
I found out how to do it.
Thx anyway
/ J
Jesper Blomström <[EMAIL PROTECTED]> skrev i
diskussionsgruppsme
I'm not sure about including them in the mail function as such, but it can
certainly be done using one of several mime_mail classes that are around.
I don't have one handy right now but you can find them by searching the
php archives
and/or the annotated php manual. I know the one by Schumann and
ege or not? If there's a
better way to do this please let me know. Thanks in advance for any replies.
--
Michael Champagne, Software Engineer
Capital Institutional Services, Inc.
wk: [EMAIL PROTECTED]
hm: [EMAIL PROTECTED]
**
T
y_session_var]
> is enough.
>
> Kirk
>
>
> > -Original Message-
> > From: Michael Champagne [mailto:[EMAIL PROTECTED]]
> > Subject: RE: [PHP] I don't understand HTTP_SESSION_VARS
> >
> >
> > YES! That's what it was. You rule ma
date
Order by id
|;
Is there anything similar to this in PHP? I've been unable to find it if
there is.
Michael Hall
Prairie Fire Internet Technologies
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROT
You'll be reinitializing the object on every page request - objects
aren't perisistant across requests. You can make the data in
that object persistent - basically recreate the object every page with
the old data (PHP4 sessions would be one way to go here) but you
won't be able to make the objec
t it seems like it would be nicer to have this in the same file.
Thanks!
--
Michael Champagne
wk: [EMAIL PROTECTED]
hm: [EMAIL PROTECTED]
**
This communication is for informational purposes only. It is not
intended as a
But then how would you process it in the same file? If I'm calling it from
myfile and my link is to myfile then how does it know that it's already been
clicked?
Thanks,
Mike
> On Tue, 27 Mar 2001 14:04:58 -0600 (Central Standard Time), Michael
> Champagne ([EMAIL PROTECTED]) wr
Use a mime_mail class. Have a look at the mail() function in the annotated
PHP manual. There are a few mime_mail classes mentioned there with links.
Mick
On Wed, 28 Mar 2001, Carfield Yim wrote:
> How to send attachment with email with php?
>
> --
> PHP General Mailing List (http://www.php.
If you're using a templating system of some sort,
if should be pretty easy to check the USER_AGENT and only
compress if it's IE. Or NOT compress is it's NS.
That's about the only way to do it easily that I can think of,
and we're planning on implementing.
I WANT to like netscape. REALLY. Bu
No problem. Understood about the table issue, but it's normally not
the downloading of the HTML that's as much a problem as the rendering,
in my experience, with netscape.
I'm the last person who would adopt this attitude, but...
Check your stats? How many IE users? How many NS users?
The 'so
A 'minimum' is hard to recommend with out usage requirements.
The minimum specs really depend on what you're doing with it -
intranet? public web server? how much traffic do you expect?
You don't state an OS preference here, but I'd think hardware
requirements would be similar for both unix/li
To get this done I would use an Expect script, driven through CGI.
Mike
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 29, 2001 9:22 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Tough One
Hi,
Ok I have a real tough one here (well to me it is :-
Ok, in testing our site that heavily uses sessions I came across this error:
Warning: open(/tmp/sess_f3051699b0f1ae4a89570e66dab05de9, O_RDWR) failed: m (0) in
/ora9ias/Apache/Apache/php/cisweb_global.inc on line 19
I can't figure out what causes it. It just happens occasionally when I'm
calli
keep the focus of the group on PHP
jobs.
I invite you all to join up at
http://groups.yahoo.com/group/phpjobs/
Thanks!
Michael Kimsal
http://www.tapinternet.com/
734-480-9961
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e
David Hynes wrote:
> Hi,
>
> I'm new to PHP (well I used it years ago), and have been using Perl ever
> since.
>
> Someone told me that PHP is a lot more efficient than Perl, is this true ? I
> am developing a fairly large website using a MySQL database running on a
> cobalt RAQ3 server and so
I don't think it's anything to do with HTTP 1.0 or 1.1.
It's simply the fact that NS gets a copy of the website for
everything, all the time. Resized the window? OOPS! Guess
I need a new copy of the file I just got 5 seconds ago! Stupid
stupid stupid.
I think it's simply down to the fact that
;
> Hi,
>
> Never tried it either, but from previous postings I remember you
> should just be able to use array's with no prob's.
>
> (4 all I can remember i.e.)
>
> * R&zE:
>
> ***
> ** Renze M
What about the greatness of VIM?
> Hi there!
>
> I use bluefish for HTML and PHP coding, but I'm not too happy with it. Do
> you know a good PHP Editor for Linux, besides Emacs and xjed...?
>
>
>
> TIA
>
>
>
>
>
--
Michael Champagne, Software Engi
I need an older version of PHP because my pam_auth won't build with
php-4.0.4pl1? With the redesign of the php site, I think they removed older
source files. Can anyone confirm this, or does anyone know where I can get
php-4.0.0 - 4.0.4 source files?
Mike
--
PHP General Mailing List (
With the hope that someone at php.net is listening...
I understand you want to track how many downloads you've got, etc. but
can you make the download more direct somehow? I can't do a wget
against
the php.net site to download the latest version. :( I think it's the ?
in the
URL that gives me
"Release Candidate"
elias wrote:
> as for the pl{x} notation, i ask what is the rc{x} notation ?
>
> ""Scott Fletcher"" <[EMAIL PROTECTED]> wrote in message
> 9a04gk$116$[EMAIL PROTECTED]">news:9a04gk$116$[EMAIL PROTECTED]...
> > Hi!
> >
> > Can anyone tell me what the difference with those
disappeared
Mike
-Original Message-
From: James Moore [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 12:18 PM
To: Krznaric Michael; '[EMAIL PROTECTED]'
Subject: RE: [PHP] PHP SITE REDESIGN - What happened to older source
files?
> I need an older version of PHP becaus
I have no money, but is someone willing to provide
php-4.0.3pl1.tar.gz or just anything < 4.0.4pl1 and > 4.0.0. Please just
email if possible.
Mike
-Original Message-
From: Krznaric Michael [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 3:03 PM
To: '
To reiterate Cal's statement, we've not had issues with PHP size, other than speed.
HUGE scripts take longer to compile and parse, but overall we've been fine. I've
got scripts that are in excess of 1500 lines, which also include templates and other
classes, which would often put the combined fil
Les Neste wrote:
> Hi,
>
> I have a question about security with PHP. I'm building a site with PHP
> and some of the scripts connect to MySQL. All someone needs to do to get
> my MySQL passwords is view the PHP source, right? And the recommended
> approach around this is to use Zend, right?
I don't think this is possible. If you're using PHP, then data must be
sent to the server via a POST or GET method. As far as I know, that means
using a form with submit button.
Sounds like you might be thinking Javascript or something.
Mick
On Sat, 31 Mar 2001, LDL Enterprise wrote:
> Hi all
I'm using the following expression to check input strings:
if (!ereg("^[[:alnum:]_-]+$", $string)) { get outta here! }
This works fine except for when a string has spaces, as in text. What do I
need to add to the expression to handle spaces (internal, not at the
beginning or end).
Thanks
Mick
Without getting into the specifics of the zend product,
which we've not tested thoroughly, I'd hazard a wild speculation that
zend encoder-encoded scripts:
1. can be decoded
2. can NOT be decoded to the original source
Obviously anything encoded needs to be decoded to run, and someone
with enoug
Perhaps you should have taken that job. ??? I've heard (and found really)
that it's easier to find work if you're working. It's harder to make
interviews
and whatnot, but it gets you out there, you meet others and network. Who
knows where that can lead to? But if your talent is being put to u
ext couple weeks,
once
we have some other input from PHP developers.
Thanks in advance. :)
Michael Kimsal
--
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]
Try cURL
http://www.php.net/manual/en/ref.curl.php
You can send anything you want.
Mike
-Original Message-
From: Joseph Bannon [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 02, 2001 5:36 AM
To: [EMAIL PROTECTED]
Subject: [PHP] geocities and php
I notice that geocities does n
To follow up just a bit more, here are skills I would require of someone
before hiring them:
* Practical SQL knowledge, with hands-on experience of at least 6 months
(with projects/URLs to show for it) with either MySQL, Postgres, MSSQL,
Oracle, DB2 or another high-level DB system (preferably mor
I have a suspcion that it may have to do with your shell interperting the &
character. Try to quote your URL with single quotes ('').
Mike
-Original Message-
From: Michael Kimsal [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 10:41 AM
To: [EMAIL PROTECTED]
Subj
Not sure exactly what you mean. I'm a suit who *wants* to be a techie?
I'm a techie who is also a suit, if truth be told.
James Moore wrote:
> > * Ability to talk me through at least 2 ways of solving a data
> > manipulation
> > problem, without code - whiteboard/paper/hand gestures and words
y matter. I've been involved in too many
death-marches
myself to not want to go through that every week.
Chris Adams wrote:
> On 2 Apr 2001 06:49:02 -0700, Michael Kimsal <[EMAIL PROTECTED]> wrote:
> >* Willingness to work weekends/evenings, if need be, to meet deadlines.
>
&
Does anyone have any code which creates schedules? Like to create a works
schedule or a league schedule (baseball, softball that sort of thing)
-Micahel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTEC
While this would work. Its a service for which you pay. I was looking for a
code snippet.
At 02:56 PM 4/2/2001 -0400, Rick St Jean wrote:
>check out
>
>www.ileaguemanager.com
>
>At 12:12 PM 4/2/01 -0500, Michael Roark wrote:
>>Does anyone have any code which creates schedu
about all the features that go into it. It's NOT a 'snippet'.
As you can see, you've touched a nerve here. :)
Michael Roark wrote:
> While this would work. Its a service for which you pay. I was looking for a
> code snippet.
>
> At 02:56 PM 4/2/2001 -0400, Rick
2001 -0400, Michael Kimsal wrote:
>I don't like appearing rude, but I think you need to reevaluate your
>request some. What you're asking for is not a 'code snippet' - it's
>an application. A fairly customized application, I'd think too.
>
>Write down exa
Maybe, but that's what version 2.0 is for!
> d) create a more efficient system
>
Again that can come over time, get it to PHP first and then make it run
better,
Michael
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-
On Monday, April 2, 2001, at 05:53 PM, Mike King wrote:
>
>
> Michael Stearne wrote:
>>
>> get the application running in it as soon as possible.
>>
>> Maybe, but that's what version 2.0 is for!
>>
>>
>> Again that can come over time, ge
1201 - 1300 of 2696 matches
Mail list logo