Per Jessen wrote:
Jeffrey wrote:
I'm working on an application that includes e-mail notifications of
certain events. Because the application will have hundreds or
thousands of users, I've designed it so that e-mail notifications are
saved to a MySQL table. Then a regular cron job
there an alternative? I appreciate I could use sleep()
after every 50 mails - but there would still be the time-out problem.
I've searched the manual and via Google - but haven't found anything -
possibly I am searching on the wrong terms.
Your help will be much appreciated.
Th
We are running identical web applications with two different hosts. Both
are LAMP.
With one of hosts, we are having reports of users seeing "Page not
displayed" or "403 Forbidden" after submitting forms. These forms are
always sending data to the same page from which they started and the
prob
o preview small screen pages, which can be useful for
developing if you want to use this route.
Good luck!
Jeffrey
[EMAIL PROTECTED] wrote:
Hey list,
I'm doing some R&D for a project at my job and my boss wants the ability
to send pictures to cell phones. I was wondering if anyone had any
Your page currently has a JS error but...
The short answer is not in PHP. The PHP script doesn't 'process' the
upload of the file. When the file is received by the server, the
script (line 1) starts executing AFTER the file is already fully
uploaded, and the files temporary location is refe
hrm..
It just seemed strange as the script I was working on is 3 years old
and had worked flawlessly until today.
Thanks.
- Jeff
~~
Jeffrey Sambells
Director of Research and Development
Zend Certified Engineer (ZCE)
We-Create Inc.
[EMAIL PROTECTED] email
ideas why this is suddenly happening? I'm using PHP 5.1, and I
realize I could use other functions such as strval() in the
comparison however I've used similar logic in the past without problems.
Any help would be great.
Thanks
Jeff
~~
Jeffrey Sambells
We have a site which requires users log in. Once they do so a session is
created (session_start), some data is saved as session data,
particularly data which identifies the user, their privileges, etc. If
the session ends, breaks, etc. The user must log in again.
There are also forms on the si
for($i=1; $i<100; $i++) {
${'p'.$i.'name'} = 'whatever';
}
- jeff
On 20-Jun-06, at 6:14 PM, Albert Padley wrote:
I have a regular for loop - for($i=1; $i<100; $i++)
Within the loop I need to create variables named:
$p1name;
$p2name;
$p3name;
etc.
The integer portion of each variable
How about the Presidential election?!!
On Apr 13, 2006, at 9:23 AM, Jay Blanchard wrote:
[snip]
Great, now the interviewee will be able to cheat. Way to go Jay.
[/snip]
*blush* I know. I wonder where we could apply, that way we can skew
the
results so that the cheating doesn't matter.
--
The java mailing list I belong to recently had this same
conversation. I didn't know php had that ability built in. Java
doesn't (score another one for php). The cleanest solution I saw on
the Java list that would be non-language specific (in other words,
the same logic can be implemented i
OK. I know I did this a LONG time ago but I don't remember how I did
it. Thus, my post.
I have a list of last names from a MySQL database. I need to display
them grouped by the first letter of their last names and insert a
separator on display. Similar to a phone book. So it looks like;
php runs out of /usr/bin/php but entropy.ch installs into /usr/local/
php5 so you want to run /usr/local/php5/bin/php (on my system i
symlinked the two so they are the same).
-jeff
~~
Jeffrey Sambells
Director of Research and Development
Zend Certified
The php script starts to execute AFTER the file has already been
uploaded so the quick answer is no you can't get the file size prior to
the upload finishing (in PHP). I fought with a similar problem and
ended up implementing the uploading portion of a script using perl
which has access to the
You've got 83px in you XML file for the fontsize. the 'px' is messing
it up change it to just 83 in the XML file or cast the value to (float)
which will extract the 83 and remove the px:
foreach ($xml->textblock as $text) {
$fontsize=(float)$text->fontsize;
ould not change the value of the constant.
To achieve the result I want I could do:
But that just seems pointless and messy. I will assume that the simple
answer to my original question was 'No that it is not possible'.
Thanks
- Jeff
Jeffrey Sambells
cell 519.897.2552
ph
like it to be a
constant.
Thanks.
- Jeff
~~
Jeffrey Sambells
Director of Research and Development
Zend Certified Engineer (ZCE)
We-Create Inc.
[EMAIL PROTECTED] email
519.745.7374 office
519.897.2552 mobile
~~
Get Mozilla Firefox
subject = <<
- Jeff
~~~~~~
Jeffrey Sambells
Director of Research and Development
Zend Certified Engineer (ZCE)
We-Create Inc.
[EMAIL PROTECTED] email
519.745.7374 office
519.897.2552 mobile
~~
Get Mozilla Firefox at
http://spreadfirefox.com
--
PHP
sessions and use something like mod_security or a simple cookie/
query_string check to see if the requested file has a valid session.
Then apache would handle the download as normal so users could use
whatever download mechanism they want.
- jeff
~~
Jeffrey
""
}
I am thinking it is something in the PDO_pgsql extension but thought
I'd ask if anyone has any ideas why it's not working?
Thanks.
-Jeff
~~
Jeffrey Sambells
Director of Research and Development
Zend Certified Engineer (ZCE)
We-Crea
Why not store a cookie and session variable with a randomly generated ID
code (see uniqid function in manuals) then just check to see if one is equal
to the other on your "relogin" This way you don't record any "personal"
user information and can still do an autologin type script.
- Jeff
-Or
I was under the impression he was using the resource to get information then
trying to pass that information... rereading it makes it seem otherwise, so
sorry for the false information :-P I've never actually tried passing
resources themselves among scripts so TG is most likely correct. As far a
Ben,
If you grab the resource and store it in a variable, you certainly should be
able to send it via GET or POST. For that matter, you should be able to
store the information in a SESSION variable too, so I'm not sure what is
going wrong. Could you email the code you are using to grab the resou
To save on computing time, the results of the fileperms command are
cached... I assume when you run a new instance of the program, it uses a new
cache / old one is deleted when the first instance ends. Either way, you
should clear the cache first:
clearstatcache();
echo "Directory permissions fo
oops, that should be htmlentities, not htmlspecialchars.
- Jeff
On 3-Oct-05, at 11:51 AM, Jeffrey Sambells wrote:
$PHP_SELF should not be used because it will not work without
register_globals being enabled. Rather, you should use $_SERVER
['PHP_SELF'] for it as above however.
t as above however...
Don't forget to check for XSS! Using PHP_SELF you could simply change
the URL in the browser to:
/path/to/script.php">alert('hello');
-Jeff
~~~~~~
Jeffrey Sambells
Director of Research and Development
Zend Certified Engi
ot user. I thought of using a cron to watch for some
indicator but that would mean there could be a one minute delay. Any
thoughts? Running php / linux and I have root access to the machine
myself so i can set it up however I need to.
Thanks.
Jeff
--
Jeffrey Sambells
Director of Re
oh well, thanks for the help.
Jeffrey Sambells
Director of Research and Development
We-Create Inc.
519.897.2552 cell
519.745.7374 office
888.615.7374 toll free
http://www.wecreate.com
On 21-Sep-05, at 6:02 PM, Jake Gardner wrote:
Maybe something fancy with references?
http://us2.php.net
Not sure about Gallery or Apache 2 but Apache 1 uses different php.ini
files for cli, cgi and mod_php. It could be that gallery checks using
the command line version of php which has a different setting for
memory limit? Seems silly but it's a thought.
Jeff
Jeffrey Sambells
Direct
is it possible to retrieve the name of a variable passed into a
function from within the function?
//for example here can I determine that $input came from $a in the
previous scope?
}
example($a);
?>
Jeffrey Sambells
Director of Research and Development
We-Create Inc.
519.897.2552 c
k
> >
> >
> > -
> > Start your day with Yahoo! - make it your home page
> >
>
--
Jeffrey D. Means <[EMAIL PROTECTED]>
MeansPC
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lso look into http://php.net/require_once, but I tend to find
> that people who start off with that end up being sloppy coders and end up
> having a whole rats' nest of includes with no real Plan behind them, which
> cause problems in the long run. Just my opinion, and I'm bound
netcraft shows how many servers have php, but nothing specific about
versions. Maybe I'm wrong, but I checked all over netcraft's site.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Is there some way to know a general php usage statistics specific to how
many run 4.1, 4.2, and 4.3? I'm trying to get an average percentage to
figure out whether it would be a great loss to not support prior versions.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http
MS Word + Acrobat can be upload with the content-length=512KB, but the
PDFs generated from PageMaker, its content-length is greater than 512KB, why
the content-lengths are different?
Sorry for my poor english.
Thanks for your help.
Jeffrey
> Hi,
>
> I am sorry about that I didn'
There seems to be a lot of these going around.
Remember:
Don't open attachments unless you are sure of what you are getting!
Keep your Virus Scan program up to date. Any database over 14 days old
should be updated.
Many times, the Headers and addresses of the messages are faked. This is
easy
your web server is
configured like this. I believe it's normal behaviour in your case.
Please correct me if I've made anything wrong, thanks.
Cheers,
Jeffrey
"Michael T. Peterson" <[EMAIL PROTECTED]> ¦b¶l¥ó
news:[EMAIL PROTECTED] ¤¤¼¶¼g...
> When the following file,
I am running Windows 2003 server and am having trouble configuring. I
unzipped php 4.+ to c:\php. I renamed php.ini and put it in C;\windows
and configured the extension_dir = c:\php\extensions, doc_root =
c:\inetpub\wwwroot, and cgi.force_redirect = 0. I also moved php4ts.dll
to c:\windows\sytem32
Hi,
I am sorry about that I didn't mention about the file size of that pdf.
It's less than 1MB and I have checked my php.ini that it allows
post_max_size = 8M. So, in my little knowledge, I think it's alright.
Thanks for your help.
Jeffrey
- Original Message -
, even for
other pdf.
I would like to ask is it possible that something in that pdf's header
corrupted? But, I can view that file in my acroread and if I use FTP to
upload that file, then I can view the file in browser also. Oh, please
help.
Cheers,
Jeffrey
--
PHP General Mailing List (
27;;
$mode = 0755;
$mode &= 01;
--Jeff
--
Jeffrey Labonski| http://www.eportation.com
Senior Software Developer | (215) 627-2651 voice
ePortation, LLC.| (267) 237-7866 cell
[EMAIL PROTECTED] | (215) 893-5287 fax
On Tue, 9 Dec 2003, Richard Davey wrote:
> Hello
Can this be done? How much $$$? Quality of PDF?? Thanks very much...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I like to use Edit Plus. www.editplus.com
It has the syntax highlighting for php, perl, java, and many others through modules
that are downloadable from their web site, DOESNT change code like dreamweaver does
and its cheap ($25).
Jeff Pearson
- Original Message -
From: "Ruessel, Jan"
Does anyone know how I would parse the domain that scripts are currently being
executed in?
For example:
I use seperate domains for development and production. There are times I have to
specify a hard coded url instead of a relative one. So for the development it would be;
dev.domain.com/somef
This is not an apache proble it is a problem with your php.ini file. In
this file there is a line that specifies how large of POST data can be
received, the default is 500k. If you are running apache 2.0 there is
an additional place where this might be being defined. You can find
this file in th
?? BTW: at the time I am trying to display a message I have
already started output to the browser.
---
Jeffrey D. Means
CIO for MeansPC
[EMAIL PROTECTED]
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.512 / Virus Database: 309
Looking for direction PHP and XML. I have a need to build a simple XML
doc from a PHP set of form vars. Any tips or examples are greatly appreciated.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I am trying to write a script but for security I need to verify that it is
not executed by a web server. At this point I have just placed it outside
the htdocs tree but would like to build into the script a test to die if it
is being executed by a web server.
Thanks
Jeff Means
CIO for MeansPC
[E
This code does not work with my system. Any ideas as for a work arround??
--code starts
$config["imap_server"] = "bast.picotech.net";
$config["imap_port"] = 143;
$mailbox = "INBOX";
$login["username"] = "myusername";
$login["password"] = "mypassword";
$servername = "{" . $config["imap_server"] .
Thanks to Kevin, Monty and the others who helped with my earlier post...
Anyone have experience with PHP based "Email This Story" and "Print This
Story" functions?? I am looking to add these along with a digital postcard
mailer.
--
PHP General Mailing List (http://www.php.net/)
To unsubscrib
Actually, I just found out we run PHP 4.0.6... Will the query
string/GET process still work? Right now it's not and I thought I saw in
the docs that the POST/GET isn't in pre 4.1...
Just add some Javascript to the links around your thumbnails, like this:
Then you need to create a scr
First thanks for your help!.. I have the variable passing OK to
this html page below. But the filename is not making it to the
tag. I think the syntax is off?? I'm thinking maybe the img src tage needs
to be broken up to allow the $image var to process?
Test image
$im
Help! :-)
Have a need for a pop up window to show images when the thumbnail is
clicked. But the script I found only shows the image and no background,
etc. I want to be able to have the pop up open and then send it a php
created dynamic page with the proper html and image.
In perl I know ho
> who knowes how to count the charcaters in a string without the space
> character?
Using a regular expression to strip out all the spaces before passing to the
word counting function seems easiest. You'll be left to adapt it to PHP, but
the regexp is: 's/ //g' That removes all spaces. If it gives
> Why re-invent what is already written? I'm well aware that it's easy to
> write but there may be something out there already that suits my needs and
> has some features that I hadn't thought of. If you don't have a suggestion
> on a package please spare me the rude replies which seem to run rampa
> Not to cause a flame war, but, MySQL and PostgreSQL are both excellent
> choices, MySQL tends to be a lighter less feature rich database while
> PostgreSQL tends to have more features, perform better under load, etc.
Under differing types of load, yes. MySQL is more hit-based, while
PostgreSQL d
> > I'm just deciding which DB to use for my projects and I'm not clear with
one
> > thing... When considering a database for web, is MySQL good enough? I
read
> > it only supports table locking, which is not very satisfying in such a
> > multiuser environment as the internet..
>
> PostgreSQL has t
> The quick solution, if you intend to continue the autoincrement field, is
to
> number the entries manually when you're displaying them: Something along
the
> lines of:
>
> $count = 0;
> while ($row(mysql_fetch_array($result_id))) {
> $count++;
> echo "Entry $count";
> ...
> ..
> > For reference, see http://autocracy.homelinux.org/template.php and
> > http://autocracy.homelinux.org/error.php
>
> Unless you have a good reason to do otherwise please post your code here.
> People would be less inclined to help if they have to go about clicking on
> links to see what your pro
On Saturday 30 November 2002 03:14 pm, you wrote:
> On Sunday 01 December 2002 03:54, Jeffrey B.Ferland wrote:
> > std_layout("Title here", list_writings(poetry))
> >
> > both std_layout and list_writings are user-defined functions.
> > std_layout() echo's
std_layout("Title here", list_writings(poetry))
both std_layout and list_writings are user-defined functions. std_layout()
echo's the two arguments that it takes at select points in its execution. I
want to the output of list_writings() to be an argument for std_layout().
-Jeff
SIG: HUP
--
P
I am using PHP 4.2.3 with Apache-SSL 1.3.26 and need some advice on how
to get my scripts to receive the cookies that I am setting along with
the POST and GET values from the preceding form. How do I go about this
task? My thanks in advance for any help offered as I am totally
stumped.
Jeff Me
MAIL PROTECTED]...
> Oh, watch your = vs. == in your if statements.
>
> On Tue, 30 Jul 2002, Jeffrey wrote:
>
> > Wish it was that easy, here is the call to end the page right above as
im
> > trying to trouble shoot this problem.
> >
> > // End document
> &g
gt; function.
>
> -Rasmus
>
> On Tue, 30 Jul 2002, Jeffrey wrote:
>
> > Here we go again; I posted the message "pdflib, NEED HELP with
> > function problem (newby)" and thank you to all that helped. Even
> > after that help, seems I cant understand scope to
Diregard the missing "{" bracket its not the problem, I dont why its missing
from my post.
Jeff
Jeffrey <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Here we go again; I posted the message "pdflib, NEED HELP with
> func
Here we go again; I posted the message "pdflib, NEED HELP with
function problem (newby)" and thank you to all that helped. Even
after that help, seems I cant understand scope to well.
Im trying to make a function that creates another page when I
have reached the bottom of a page. For some reason
Hello,
Using php v 4.2.2 with pdflib support, on apache v. 1.3, and redhat
linux 7.2.
I for some reason can not get a pdf_setfont, pdf_set_text_pos,
pdf_[anything], to work inside a function. What is going on. All the pdf
extensions work find as long as I dont try to use them inside a functi
I have come across a situation where I need to temporarly change the user
profile in the middle of a script. I would prefer to do this than to change
ownership of files to allow the script to be able to read them. I don't
know whose files I will be reading when the script runs, however I need to
In using the setcookie function I can not set a cookie if I specify a time
period. ie. setcookie("Cookie_Name", "Cookie_Value", time()+30); will not
set a cookie, but setcookie("Cookie_Name", "Cookie_Value"); does work. What
am I dooing wrong??
Does anyone have any experience with making script output display in a
frame?? I would like to get this to happen on an e-commerce site I am
designing and am stuck. I have tried with no success. Please help.
Jeff Means
CIO for PicoTech
http://www.picotech.net
's not possible to grab it even with a shorter execution time as well.
-j
Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467
ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749
PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7
--
Andrew Hill,
I would like to thank you very much for your help. I manage to connect to
remote oracle after a week try. The problem was I run apache as nobody and
nobody user does not have priviliege to access ~oracle directory. Now I can
continue with my project.. :)
Jeffrey Iskandar Ahmad
downright trivial to spoof it. This doesn't afford any more security at all.
-j
--------
Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467
ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749
PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B
event anyone at all from hitting, in your
example, http://therealsite.
-j
Jeffrey Paul [EMAIL PROTECTED] (877) 748 3467
ICQ: 14295546 AIM: kw34hd1 NXTL/DC: 130*21*16749
PGP: 0xF50BB9D7 A21AFD828C30EC77545DA0B3F501F50BB9D7
--
PHP General Maili
I have reinstalled but still cannot work.
How i compile:
./configure --with-mysql --with-apxs=/usr/local/apache/bin/apxs \
--with-ldap=/home/jeffrey/download/directory/install --with-oci8=/home/oracl
e
Apache server stop and started.
Im using redhat 7. Oracle 8i installed as programmer
I did but didnt work.
Jeffrey Iskandar Ahmad
System Engineer
Technology Division
TIME dotNet
-Original Message-
From: Andrew Hill [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 21, 2001 9:09 PM
To: Jeffrey Iskandar Ahmad; [EMAIL PROTECTED]
Subject: RE: [PHP] installing PHP with
uot;";
exit;
}
else
{
echo "success";
}
Jeffrey Iskandar Ahmad
System Engineer
Technology Division
TIME dotNet
--
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]
not
display correctly. I have tried different servers but still the same.
And all clients get the wrong date. Im Using php 4.06 and win2k and
winnt4.
Can anybody help me.
Thanks
Jeffrey Iskandar Ahmad
System Engineer
Technology Division
TIME dotNet
--
PHP General Mailing List (http
Hi,
When i use this function mail(), mail was sent successfully but when
recipient receive the mail the date timezone is incorrect. It
displayed -0800 instead of +0800. Im from +0800. The timezone does not
display correctly. I have tried different servers but still the same.
And all clients g
if you have DirectoryIndex support you can specify what file it will use
as an index page.
for most unix type os's this seems to be index.php[ 3] index.htm[ l]
for IIS it's default.asp or something
Jeff
> In an ideal world I would like to be able to type http://localhost into
> my browser and f
At 04:11 PM 8/30/2001, Steve Wright wrote:
>Hey,
>
>I have just developed a simple site search.. .and am after learning how to
>get it to search all directories... at present, it only searches the one it
>is in!!
> $cmdstr = "grep -i $searchstr *";
"man grep" on my linux box show
At 09:00 PM 7/31/2001, Guaranteed ! wrote:
>We are a serious company, offering a program that will enhance your sex
>life, and enlarge your penis in a totally natural way.
I think they got the ASP mailinglist mixed up with the PHP one..
-j
-
ode
restriction)?
Please help me.. I'm getting despaired on this in. ;-)
Regards,
Jeffrey Barendse
--
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]
Hi,
I got error on OO programming after upgraded php3.0.8 to php4.05. I am
using apache 1.3.14, phplib 7.2c and MYSQL 3.23.36. The program was working
fine under PHP 3.0.8. Error is showing all html code on browser as
following.
<{FONT FORM Method=post ACTIONLIGN=CENTERE="verdana, helvet
At 03:56 AM 4/13/2001, Peter Harkins wrote:
> This generates a parse error:
> mysql_connect("localhost", "root", "rootpw") or
> return("bar");
>
> But all the following work fine:
> mysql_connect("localhost", "root", "rootpw") or die("bar");
>
>
[posted and emailed]
On 12 Apr 2001 12:48:52 -0700, [EMAIL PROTECTED] (Jeffrey
Greer) wrote:
>
>// putting the values in an array is trivial, but you should do it
>like this
>// or you will confuse your numeric ids with the ids that php
>puts in an array automatically
Whoop
[posted and emailed]
If you're looking for a simple way to work with databases I would use
phplib. Phplib is a db abstraction layer which supports over a dozen
databases including mysql. You can get the libraries at
http://phplib.netuse.de/download/phplib-7.2c.tar.gz You will need to
use "db_
better yet, try include_once() instead of all instances of include(). It
will only include a file once, rather than every time you call include() on
that path.
Nifty feature.
-j
At 11:17 AM 4/11/2001, Johnson, Kirk wrote:
>The function in question is defined in an included file, right? Thi
On 10 Apr 2001 19:08:03 -0700, [EMAIL PROTECTED] (Seung-woo Nam)
wrote:
>Jeffrey Greer wrote:
>>
>> I'm not trying to provide the level of service of a large isp or even
>> get 100 customers. I would just like to pay for my half of the web
>> portal. I thought
I'm not trying to provide the level of service of a large isp or even
get 100 customers. I would just like to pay for my half of the web
portal. I thought $8/mo for my service would be a good value for php
programmers who do not need a high level of security.
Would you say $8/mo is not a good v
On 10 Apr 2001 12:08:01 -0700, [EMAIL PROTECTED] (Kurth Bemis)
wrote:
>At 06:15 PM 4/10/2001, Jason Lotito wrote:
>
>no no - its an OC3+ web server.must be an overseas brand..or
>something..i've never heard of it.maybe its an SGI or something
>they have wacky names for their stuff
My name is Jeffrey Greer. You can mail me at
[EMAIL PROTECTED]
You can view more info at
http://www.singlesconnection.org/services/php_hosting.php
--
Jeff Greer
- B.S. computer science - Univ. MO - Rolla
- I do web hosting and development. Details
at http://www.singlesconnection.org/services
My name is Jeffrey Greer. You can mail me at
[EMAIL PROTECTED]
You can view more info at
http://www.singlesconnection.org/services/php_hosting.php
--
Jeff Greer
- B.S. computer science - Univ. MO - Rolla
- web developer/software engineer,
dedicated to the struggle against the fascist
Microsof
actually, the offending line is:
$cookie_expire = "$time*3";
it may be set too high if you triple it, but i think what might be
happening is that it's setting $cookie_expire to '986703865*3' which would
be invalid.
if this is the case (i dont think you can multiply inside of quotes), then
t
My name is Jeffrey Greer. You can mail me at
[EMAIL PROTECTED]
You can view more info at
http://www.singlesconnection.org/services/php_hosting.php
--
Jeff Greer
- B.S. computer science - Univ. MO - Rolla
- web developer/software engineer,
dedicated to the struggle against the fascist
Microsof
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says...
> On 12 Mar 2001 03:51:13 -0800, [EMAIL PROTECTED] (Nick Davies) wrote:
>
> >How about linux ones?
> >
> >I just tend to use vim or emacs but i'm sure there are some out there.
>
> I've used Xemacs. Do you know if there is a PHP mode for
Hello,
I've created some form code. It is not finished yet, but it is usable
and powerful. I've looked at other form code, but none is object
oriented. I've put this code up before it is finished so I can get
some suggestions for future development.
With this form class you can create your ow
On 9 Mar 2001 22:43:08 -0800, [EMAIL PROTECTED] (Aaron Tuller)
wrote:
>At 12:27 AM -0600 3/10/01, Jeffrey Greer wrote:
>>With paypal's business account there are no credit checks and the rate
>>is 2.2% for cc payments.
>
You bring up valid points, but I still think pay
On 9 Mar 2001 14:15:37 -0800, [EMAIL PROTECTED] (Rick St Jean)
wrote:
>How to people typically integrate payment processors with PHP?
>And what processors are used most often? I know that a number
>of people are scrambling after cybercash died. There is a site out
>there www.opay.com that says
Yes. Take a look at Code Charge. It does what you want and then some!
(www.codecharge.com)
--
Jeff (FurBall)
WebOverdrive Newbie Tech Board
http://www.topniche.com/tech/
[EMAIL PROTECTED]
-Original Message-
From: Tim Ward [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 07, 2001 8:
1 - 100 of 104 matches
Mail list logo