RE: [PHP] RE: Organisational question: surely someone has implemented many Boolean values (tags) and a solution exist

2011-01-20 Thread Jerry Schwartz
adds or subtracts 2 >from an int) then it looks to be a pain to add nodes. > [JS] Not at all. Somebody, somehow, has to assign a name to the tag and designate its place in the hierarchy. I don't see how you can avoid that being done by a human. Regards, Jerry Schwartz Global Information

[PHP] RE: Organisational question: surely someone has implemented many Boolean values (tags) and a solution exist

2011-01-20 Thread Jerry Schwartz
>-Original Message- >From: Dotan Cohen [mailto:dotanco...@gmail.com] >Sent: Thursday, January 20, 2011 11:25 AM >To: Jerry Schwartz >Cc: mysql.; php-general. >Subject: Re: Organisational question: surely someone has implemented many >Boolean values (tags) and a solutio

[PHP] RE: Organisational question: surely someone has implemented many Boolean values (tags) and a solution exist

2011-01-20 Thread Jerry Schwartz
#x27;10.%') or tag_number LIKE ('10.05%') and so forth. This scheme is infinitely extendable. To get the entire hierarchy, you simply SELECT tag_number, tag_name FROM tags ORDER BY tag_number; Regards, Jerry Schwartz Global Information Incorporated 195 Farmington Ave. Farmington,

[PHP] RE: Good source for sample data?

2010-01-29 Thread Jerry Schwartz
tion as part of security screening for a registration system. Regards, Jerry Schwartz The Infoshop by Global Information Incorporated 195 Farmington Ave. Farmington, CT 06032 860.674.8796 / FAX: 860.674.8341 www.the-infoshop.com >-Original Message- >From: Shawn McKenzie [mailto

Re: [PHP] Can php be cause a strain on a web server

2009-08-09 Thread Jerry Wilborn
You seem nice. Jerry Wilborn jerrywilb...@gmail.com On Sun, Aug 9, 2009 at 12:54 PM, Daniel Brown wrote: > On Sat, Aug 8, 2009 at 11:08, Jerry Wilborn wrote: > > You're going to have to be more > > specific. There are very few problems where this is absolutely no >

Re: [PHP] MySQL auto_increment fields Server version: 5.1.32-community-log

2009-08-09 Thread Jerry Wilborn
ALTER TABLE T1 AUTO_INCREMENT=1; It's likely that you dropped every record and expected the auto_increment to reset. Jerry Wilborn jerrywilb...@gmail.com On Sun, Aug 9, 2009 at 1:17 PM, Ralph Deffke wrote: > Hi all, > > I'm facing the fact that it seems that auto_incremen

Re: [PHP] Server change affecting ability to send downloaded files???

2009-08-08 Thread Jerry Wilborn
ent to the browser. It might not hurt to move to a fread($fh, 8096) + print() to prevent the bug in the future. Jerry Wilborn jerrywilb...@gmail.com On Sat, Aug 8, 2009 at 9:00 AM, Brian Dunning wrote: > A Rackspace guy determined that php.ini was set to use 16MB of memory, and > he uppe

Re: [PHP] Can php be cause a strain on a web server

2009-08-08 Thread Jerry Wilborn
You're going to have to be more specific. There are very few problems where this is absolutely no solution. Jerry Wilborn jerrywilb...@gmail.com On Sat, Aug 8, 2009 at 2:51 AM, Per Jessen wrote: > Curious george wrote: > > > Is there a case where php can become unscalabl

Re: [PHP] Notification system

2009-08-08 Thread Jerry Wilborn
I highly recommend ExtJS (htp://www.extjs.com). Jerry Wilborn jerrywilb...@gmail.com On Fri, Aug 7, 2009 at 10:22 PM, Bastien Koert wrote: > On Fri, Aug 7, 2009 at 10:25 PM, Jonathan Tapicer > wrote: > > Also, take a look at Comet Server: > > http://en.wikipedia.org/wiki/

Re: [PHP] Server change affecting ability to send downloaded files???

2009-08-07 Thread Jerry Wilborn
The 500 is the result of the missing content-type in the real header. Once you get a blank line in there, it thinks thats the content. The error log will likely say 'premature end of script headers'... Good mystery on why it's got the blank line though. Jerry Wilborn jerrywilb...

Re: [PHP] Buffered Logging?

2009-08-07 Thread Jerry Wilborn
You don't mention what database you're using, but mySQL supports memory based tables. You can use this to insert your single page loads and then have a job that periodically inserts in bulk. Memory based tables: http://dev.mysql.com/doc/refman/5.0/en/memory-storage-engine.html Jer

Re: [PHP] curl_exec not hit server

2009-08-07 Thread Jerry Wilborn
You could also try checking the SSL log. This may give hints about the problem; none of the HTTP conversation happens until after SSL has been negotiated. Jerry Wilborn jerrywilb...@gmail.com On Fri, Aug 7, 2009 at 1:16 PM, Tom Worster wrote: > On 8/6/09 2:33 PM, "Ted Yu" wrote:

Re: [PHP] curl_exec not hit server

2009-08-06 Thread Jerry Wilborn
Can you tell us anything about the cert on the host? Is it self signed, is it expired, etc? A hip-shot: try turning off VERIFYPEER and VERIFYHOST. Jerry Wilborn jerrywilb...@gmail.com On Thu, Aug 6, 2009 at 1:33 PM, Ted Yu wrote: > > Hi, > I use the following code to call third

Re: [PHP] dynamically naming PHP vars on the fly?

2009-08-05 Thread Jerry Wilborn
http://us2.php.net/manual/en/language.variables.variable.php Jerry Wilborn jerrywilb...@gmail.com On Wed, Aug 5, 2009 at 5:17 PM, Govinda wrote: > HI all > > One thing I have been working around but now would love to just do it > finally (and save workaround/longer code hassle) is

Re: [PHP] Time keeping in DB

2009-08-05 Thread Jerry Wilborn
You don't mention what DB you're using, but mySQL can be quite a pain when dealing with multiple time zones. Not impossible, but a hassle none the less. Be sure to set aside a place to store this (and another spot for user preferences to keep track of their TZ). Jerry Wilborn

Re: [PHP] navigation include not functioning

2009-08-05 Thread Jerry Wilborn
I'm having trouble understanding your description of the problem. Can you tell us what you're seeing and what you expect to see? Jerry Wilborn jerrywilb...@gmail.com On Wed, Aug 5, 2009 at 12:00 PM, Allen McCabe wrote: > I am trying to generate pages by importing content in

Re: [PHP] Multiple MySQL Queries

2009-08-04 Thread Jerry Wilborn
shopping cart you're unlikely to hit those. If you want to avoid JS, you're going to have to send the whole page and then sort out what needs to be updated on the server. Jerry Wilborn jerrywilb...@gmail.com On Tue, Aug 4, 2009 at 2:03 PM, wrote: > Sorry... I'm using GET. I have

Re: [PHP] Multiple MySQL Queries

2009-08-04 Thread Jerry Wilborn
If the form method is "POST" then set the 'c' variable with a hidden value within the form: Jerry Wilborn jerrywilb...@gmail.com On Tue, Aug 4, 2009 at 1:50 PM, wrote: > > On Aug 4, 2009, at 9:43 AM, Jerry Wilborn wrote: > > Keep in mind that you can use n

Re: [PHP] Multiple MySQL Queries

2009-08-04 Thread Jerry Wilborn
Keep in mind that you can use name=var[] value=value1, name=var[] value=value2 and php will create an array as $_REQUEST['var'] with each of your values. The keys are numbered and don't count on what order they'll come through. Jerry Wilborn jerrywilb...@gmail.com On Tue, Aug

Re: [PHP] Clean break.

2009-08-04 Thread Jerry Wilborn
Am I missing something? Can't this be done quickly/easily with preg_match()? if (preg_match('/\[(.*):(.*)\s/U', '[21/Jul/2009:00:00:47 -0300]', $matches)) { print "date: {$matches[1]}, time: {$matches[2]}"; } Jerry Wilborn jerrywilb...@gmail.com O

[PHP] socket_last_error() equiv

2009-08-04 Thread Jerry Wilborn
hp?id=34380), but the last movement on it is 2005. Jerry Wilborn jerrywilb...@gmail.com

[PHP] Re: php ssl connection timeout issue

2009-05-15 Thread Jerry Zhao
On Thu, May 14, 2009 at 5:17 PM, Nathan Rixham wrote: > Jerry Zhao wrote: > >> On Thu, May 14, 2009 at 5:05 PM, Nathan Rixham wrote: >> >> Jerry Zhao wrote: >>> >>> I tried different combination of ssl clients and servers, it all points >>>

[PHP] Re: php ssl connection timeout issue

2009-05-14 Thread Jerry Zhao
On Thu, May 14, 2009 at 5:05 PM, Nathan Rixham wrote: > Jerry Zhao wrote: > >> I tried different combination of ssl clients and servers, it all points to >> problems on the client side of my new php build. The same code worked on >> an >> older php build. >>

[PHP] Re: php ssl connection timeout issue

2009-05-14 Thread Jerry Zhao
I tried different combination of ssl clients and servers, it all points to problems on the client side of my new php build. The same code worked on an older php build. On Thu, May 14, 2009 at 4:57 PM, Nathan Rixham wrote: > Jerry Zhao wrote: > >> Hi, >> >> I am havi

[PHP] php ssl connection timeout issue

2009-05-14 Thread Jerry Zhao
meout" error. Any tips on the cause of this issue or how to debug this is appreciated. Regards, Jerry.

RE: [PHP] RE: non-auto increment question

2009-02-26 Thread Jerry Schwartz
Sorry, I should know better. >-Original Message- >From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] >Sent: Thursday, February 26, 2009 1:51 PM >To: Jerry Schwartz >Cc: 'PJ'; 'Gary W. Smith'; 'MySql'; php-general@lists.php.net >Su

RE: [PHP] RE: non-auto increment question

2009-02-26 Thread Jerry Schwartz
e specific database changes. You can make yourself more independent of the specific database by using the PDO abstraction, although I would save that for a rainy weekend. Regards,   Jerry Schwartz The Infoshop by Global Information Incorporated 195 Farmington Ave. Farmington, CT 06032   860.674.8796 / FA

[PHP] RE: catch the error

2009-02-26 Thread Jerry Schwartz
>-Original Message- >From: PJ [mailto:af.gour...@videotron.ca] >Sent: Thursday, February 26, 2009 12:28 PM >To: php-general@lists.php.net; MySql >Subject: catch the error > >What is wrond with this file? same identical insert works from console >but not from this file :-( > > > >Untit

RE: [PHP] RE: non-auto increment question

2009-02-26 Thread Jerry Schwartz
>-Original Message- >From: PJ [mailto:af.gour...@videotron.ca] >Sent: Thursday, February 26, 2009 11:27 AM >To: Jerry Schwartz >Cc: a...@ashleysheridan.co.uk; 'Gary W. Smith'; 'MySql'; php- >gene...@lists.php.net >Subject: Re: [PHP] RE: non-auto i

RE: [PHP] RE: non-auto increment question

2009-02-25 Thread Jerry Schwartz
ry, >accessed by user/password login... so there's really very little >possibility of 2 people accessing at the same time. [JS] Being rather old to all this, I can tell you that if something is even remotely possible it will happen just before your performance review. Never depend u

RE: [PHP] RE: non-auto increment question

2009-02-25 Thread Jerry Schwartz
record that has an auto-increment field, you can retrieve the value that got inserted with "SELECT LAST_INSERT_ID()". It is connection-specific, so you'll always have your "own" value. You can then save it to reuse, either as a session variable or (more easily) as a hidden f

[PHP] Installation of php-5.2.8-win32-installer.msi

2009-01-27 Thread Jerry Foote
? Jerry Foote ScopeCraft, Inc. 4175 E. Red Cliffs Dr. Kanab, UT 84741 435-899-1255 jfo...@scopecraft.com

[PHP] Re: date processing needed in form

2006-01-03 Thread Jerry Kita
cript ... then when the form is submitted I'd let it go straight through to your standard forms validation program ... I wouldn't even involve PHP. -- Jerry Kita http://www.salkehatchiehuntersville.com email: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/

[PHP] Re: PHP MySQL

2006-01-02 Thread Jerry Kita
> 0.95 > 0.96 > 0.97 > Duplicate entry '' for key 1 > > The character strings shouldn't be repeated. Why did it stop at (0,97)? > Here's one thought . ascii (97) is the letter "a" is it possible that the ascii (65) "A" was inte

[PHP] Javascript Calendar and PHP

2005-04-05 Thread Jerry Swanson
What Javascript calendar works good with PHP? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Why do I get the warning messages in this case? When I execute script from shell. If I execute script from browser, no warnings.

2005-03-31 Thread Jerry Swanson
php time_test.php PHP Warning: Unknown(): Unable to load dynamic library './domxml.so' - ./domxml.so: cannot open shared object file: No such file or directory in Unknown on line 0 PHP Warning: Unknown(): Unable to load dynamic library './imap.so' - ./imap.so: cannot open shared object file: No s

Re: [PHP] XML & HTTP

2005-03-22 Thread Jerry Swanson
It is SOAP. I read tutorial on w3 website. Have one more question: The data that is exchange in SOAP protocol is encrypted or not? Thanks On Mon, 21 Mar 2005 17:32:59 -0800 (PST), Richard Lynch <[EMAIL PROTECTED]> wrote: > On Fri, March 18, 2005 11:14 am, Jerry Swanson said: > &g

Re: [PHP] XML & HTTP

2005-03-21 Thread Jerry Swanson
I need to use SOAP and I use PHP 5. Do I need to compile PHP with some option? Thanks On Fri, 18 Mar 2005 16:03:20 -0500, Jason Barnett <[EMAIL PROTECTED]> wrote: > Chris Shiflett wrote: > > Jerry Swanson wrote: > > > >> I generated XML file. I need to send

Re: [PHP] XML & HTTP

2005-03-18 Thread Jerry Swanson
I generated XML file. I need to send the file to another server not through FTP but though HTTP. On Fri, 18 Mar 2005 14:17:28 -0500, Chris Shiflett <[EMAIL PROTECTED]> wrote: > Jerry Swanson wrote: > > I create XML file, how to pass the XML file to another server through HTT

[PHP] XML & HTTP

2005-03-18 Thread Jerry Swanson
I create XML file, how to pass the XML file to another server through HTTP? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [HAB] How to build a member area with PHP Sessions

2005-02-06 Thread Jerry Kita
the general idea. It works for me. Others may have more complex schemes but this serves my purpose well. I'm not a professional programmer so I generally look for stuff that I can easily understand. Hope this helps. -- Jerry Kita http://www.salkehatchiehuntersville.com email: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem solved!

2005-02-03 Thread Jerry Miller
I didn't want to give up entirely on the flexibility of writing my scripts in C, so I thought some more about how to get a CGI script to use PHP without having to spend a lot of time on PHP logic. My first attempt was to see whether I could substitute the extension ".php" for the usual ".cgi" exte

Re: [PHP] How to make binary strings useful?

2005-02-02 Thread Jerry Miller
That should help. Thanks. "Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I've written complete file parsers in PHP, and the only snag I've run > into is dealing Signed integers (and larger). > > > Jerry Miller wrote: > > >

[PHP] Re: How to make binary strings useful?

2005-02-02 Thread Jerry Miller
There's a FAQ section entitled "PHP and Other Languages," C isn't even listed among them! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to make binary strings useful?

2005-02-02 Thread Jerry Miller
Is there an example of the UNIX od utility written in PHP? Is such a useful task even possible?? >From what I've seen of strings, they're completely opaque, so what good does it do to be able to read binary-safe strings from a file??? Even the deprecated (why) $str{$inx} notation apparently r

[PHP] RE: How to make binary strings useful?

2005-02-02 Thread Jerry Miller
Here's the code (with the domain name removed) that doesn't work, "despite" the poor documentation of the variable types: /www/binary/"; $dh = opendir ($dir); do { $file = readdir ($dh); } while (!strncmp ($file, ".", 1)); $filename =

[PHP] replacement

2005-01-25 Thread Jerry Swanson
I'm trying to replace a substr of the string that start from "Rated blahblah;" azt the end semicolon. Example: safsagfasdfsdfdsfRated by 4 people;fafafaafafaf -> return safsagfasdfsdfdsffafafaafafaf $replacement =""; $pattern = "/Rated.+;/"; $found_str = preg_replace($pattern, $replacement, $fo

Re: [PHP] Session errors when uploaded to host

2005-01-23 Thread Jerry Kita
y. Otherwise I would lose my session variables periodically. -- Jerry Kita http://www.salkehatchiehuntersville.com email: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Apache 2.0 and Sessions

2005-01-11 Thread Jerry Kita
tically. Still might not be practical for you for other reasons but I thought I should give you a more complete answer .. Jerry What I have here will not work on their servers if I do this. I could just comment that line out, granted, but it doesn't seem practical for my situation. Thanks

[PHP] Re: Apache 2.0 and Sessions

2005-01-11 Thread Jerry Kita
t the beginning of every script and it works fine. Here's the line of code I use: session_save_path('c:\Program Files\Apache Group\Apache2\htdocs\tmp'); Again it doesn't answer the question you're asking but it might be an approach that's easy for you to implement.

[PHP] Re: making FORM dissapear when successful login

2005-01-05 Thread Jerry Kita
and give them a link that logs them out. if ($validlogon == "YES") { print "\n"; print "\n"; print "\n"; print "YOU ARE LOGGED IN AS: $_SESSION[userid]\n"; print "CLICK here TO LOGOUT\n"; print "\n"

[PHP] Re: Calculate No Of Days

2005-01-03 Thread Jerry Kita
it in "action" by visiting: http://www.salkehatchiehuntersville.com/Salkehatchie_2005_Camp.php -- Jerry Kita http://www.salkehatchiehuntersville.com email: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to enable ftp in php5?

2005-01-02 Thread Jerry Swanson
How I can enable php in FTP 5? What I should change in PHP.INI file? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to set register_globals=off in the script?

2004-12-21 Thread Jerry Swanson
I know that "register_globals = on" is not secure. But one program requires to use register_globals=on. So in php.ini register_globals is set to on. I have PHP 5.1, is it possible in the code set register_globals=off for specific scripts. So I want to keep PHP register_globals=on in php.ini, but

[PHP] Pass mysql array into SESSION?

2004-12-08 Thread Jerry Swanson
I want to pass an array from one page to excell generation page. I tried to pass through session($_SESSION['sql'] = $var). But value is not set. The array is actually $result = mysql_query($query); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.

[PHP] PHP upgrade

2004-12-03 Thread Jerry Swanson
How to upgrade PHP 4.3.2 to new version? OS is Linux(Fedora Core 2). -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Script Name

2004-11-26 Thread Jerry Swanson
I meant, file that are being executed. On Fri, 26 Nov 2004 09:46:05 -0500, John Nichel <[EMAIL PROTECTED]> wrote: > Jerry Swanson wrote: > > > > What variable(parameter) in PHP stores file name? > > > > TH > > Stores what filename? The name of

[PHP] Script Name

2004-11-26 Thread Jerry Swanson
What variable(parameter) in PHP stores file name? TH -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP script + read file

2004-11-21 Thread Jerry Swanson
uot;.."){ $handle1 = fopen($file, "a+"); $input_str = fread($handle1, filesize($file)); echo "TEST".$input_str; } } } On Sun, 21 Nov 2004 05:40:07 +0800, Jason Wong <[EMAIL PROTECTED]> wrote: > On Sunda

[PHP] PHP script + read file

2004-11-20 Thread Jerry Swanson
I know how to read a file. But the problem is different, I have directory that has more than 250 files. I need to read each file and process it. But How I know what file to read? ls -l (show all files). How I can select each file without knowing name? The file will be process and than delete. Any

[PHP] HTML form online

2004-11-19 Thread Jerry Swanson
I want to write php script that fill out HTML form online. Any ideas how to do it? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Segmentation Fault

2004-11-17 Thread Jerry Swanson
I have index.php file. On one server it executes with no problem. On another server it gives me Segmentation Fault error. 4.3.2 - Segmentation Fault 4.3.4 - no problem What can cause such problem? This is simple login page. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

Re: [PHP] Re: PHP file permission

2004-11-14 Thread Jerry Swanson
regular php page, some mysql queries and print html on the screen. On Sun, 14 Nov 2004 18:19:28 +0100, M. Sokolewicz <[EMAIL PROTECTED]> wrote: > depends on what you need it for > > > > Jerry Swanson wrote: > > > What is the optimal PHP file permission? >

[PHP] PHP file permission

2004-11-14 Thread Jerry Swanson
What is the optimal PHP file permission? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] header variable ?

2004-11-10 Thread Jerry Swanson
What variable "header" use? If I send something in header, what GLOBAL variable header use? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why cookie is created?

2004-11-09 Thread Jerry Swanson
Why when I specify session.cookie_lifetime = 1 // Cookies are not created. However, when I specify large lifetime, cookies are created. session.cookie_lifetime = 1500 On Tue, 9 Nov 2004 08:11:46 -0500, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I just want to give you a simple exam

Re: [PHP] Why cookie is created?

2004-11-09 Thread Jerry Swanson
So As I understand. Session also store ID on the harddrive. I don't see the big difference between session and cookies from "privacy" point of view. On Mon, 8 Nov 2004 17:55:03 -0500, Paul Reinheimer <[EMAIL PROTECTED]> wrote: > -- > I don't want to use cookies. > I want to use session. W

Re: [PHP] Why cookie is created?

2004-11-08 Thread Jerry Swanson
referral; } On Mon, 8 Nov 2004 16:19:49 -0600, Greg Donald <[EMAIL PROTECTED]> wrote: > On Mon, 8 Nov 2004 15:56:03 -0500, Jerry Swanson <[EMAIL PROTECTED]> wrote: > > I don't use cookie for my page. I use session. As I understand cookies > > don't create a

Re: [PHP] Why cookie is created?

2004-11-08 Thread Jerry Swanson
harddrive. Any ideas why? PHP version 4.3.4 On Mon, 08 Nov 2004 16:01:27 -0500, John Nichel <[EMAIL PROTECTED]> wrote: > Jerry Swanson wrote: > > I don't use cookie for my page. I use session. As I understand cookies > > don't create any files on user computer. I have

[PHP] Why cookie is created?

2004-11-08 Thread Jerry Swanson
I don't use cookie for my page. I use session. As I understand cookies don't create any files on user computer. I have this code below on my page. When I access this page immediately cookie is created on my computer. Any ideas why? -- PHP General Mailing List (http://www.php.net/) To unsubscr

[PHP] email as link

2004-11-03 Thread Jerry Swanson
I'm sending email in text format. When I specify URL in the email http://www.mydomain.com, person that receive email can click on the link and go to the page. But when a person receive and email with email address like [EMAIL PROTECTED] the email is regular text not an email. How to make email ad

Re: [PHP] text email & new line

2004-11-02 Thread Jerry Swanson
It is working without \r\n. Just using regular spaces/new lines in the text message. On Tue, 2 Nov 2004 18:34:00 +0100, Jordi Canals <[EMAIL PROTECTED]> wrote: > On Tue, 2 Nov 2004 16:25:56 +, Richard Davey <[EMAIL PROTECTED]> wrote: > > Hello Jerry, > > > >

Re: [PHP] text email & new line

2004-11-02 Thread Jerry Swanson
ano Cascione <[EMAIL PROTECTED]> wrote: > Use \r\n > Some pop server doesn't support other special characters. > > Sebastiano > > Alle 17:12, martedì 2 novembre 2004, Jerry Swanson ha scritto: > > > > I'm sending text email. How I can make new line

[PHP] text email & new line

2004-11-02 Thread Jerry Swanson
I'm sending text email. How I can make new line. "\n" seems to be not working. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] beginnind and end of the week

2004-11-02 Thread Jerry Swanson
Your solution works only for Monday. For Tuesday output is below start -- 20041108 end - 20041114 I have no idea why ti doesn't wotk. On Mon, 1 Nov 2004 02:45:59 +, Curt Zirzow <[EMAIL PROTECTED]> wrote: > * Thus wrote Jerry Swanson: > > > > I need to run a

[PHP] beginnind and end of the week

2004-10-31 Thread Jerry Swanson
I need to run a query using PHP/MYSQL. The query should be for a week. So if today is tuesday, the query should be from Monday to Sunday. How in in php I can know when the beginning and end of the week? TH -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php

[PHP] output htmkl file as text

2004-10-27 Thread Jerry Swanson
I want to output html file on the screen like text not like html file. I want a program to read html file and output source code to the screen. Any ideas how to fake browser, so browser will print html tags on the screen? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Parsing

2004-10-23 Thread Jerry Swanson
I have huge html file. I want to parse the data and get everything between and What function is good for this purpose? TH -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to parse this?

2004-10-23 Thread Jerry Swanson
I have huge html file. I want to parse the data and get everything between and What function is good for this purpose? TH -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: ' (Single Quotes) in user inputs

2004-10-18 Thread Jerry Swanson
I'm not sure that stripslashes() are used for input. addslashes() - to insert data into database stripslashes() - to get data from database and print it. On 14 Oct 2004 11:19:14 +0200, Christian Jul Jensen <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] (Ben) writes: > > > Any ideas on dealin

Re: [PHP] Form Validation

2004-10-14 Thread Jerry Swanson
On what percent browsers Javascript is enabled? On Wed, 13 Oct 2004 15:48:51 -0700, Mattias Thorslund <[EMAIL PROTECTED]> wrote: > There are several JavaScript solutions for validating forms on the > client side. Search on hotscripts.com and google.com. > > Client-side validation (in the browse

[PHP] For how long session exist

2004-10-14 Thread Jerry Swanson
For what period of time a session can exist? Or session exist as soon as browser is open? TH -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] time

2004-10-13 Thread Jerry Swanson
I want to send email every 24. What time format you recomend to use? In what format the data should be store in mysql? TH -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] please ignore

2004-10-02 Thread Jerry M. Howell II
just testing maildrop please ignore :)

[PHP] Re: Session problems under heavy load???

2004-08-07 Thread Jerry Kita
I had a problem with session variables being lost. However it wasn't because of a heavy load. My hosting company does load balancing and user requests would be directed to different servers. However, when the session was originally defined it was placed in the /tmp file of one server. When a reques

[PHP] Re: Session Variables Disappear and Reappear

2004-01-01 Thread Jerry Kita
provide a different approach? Thanks and Happy New Year to everyone. Jerry Kita "Jerry Kita" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > New to PHP and I've checked previous posts and haven't seen similar problem. > Any ideas would be appreciated. > &

[PHP] Session Variables Disappear and Reappear

2003-12-29 Thread Jerry Kita
will see that that the user moves in and out of a logged in status. This will also show up on other pages but since this site is under construction it's safest to stick to the HOME page. Other possibly helpful information. Web Hosting site is BlueDomino. Thanks for your help. Jerry Kita -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Not able to execute Linux binary

2003-12-07 Thread Jerry M. Howell II
wd" ); > > echo ( "end" ); > > > > the output is - startend > > > > shouldnt be pwd showing the present working directory > > to me. > > Yes, but exec() itself does NOT output anything. > If there is a beter way, someone reply but I be

Re: [PHP] RE: [PHP-DB] Dynamic Website Question!

2003-11-30 Thread JeRRy
consists of the parameters to refresh frame showing and tell frame showing to update a set area with updated information. The email(s) state that, read all emails. Jerry --- Jason Sheets <[EMAIL PROTECTED]> wrote: > JeRRy wrote: > > >Hi, > > > >Okay let me explain what I

[PHP] RE: [PHP-DB] Dynamic Website Question!

2003-11-30 Thread JeRRy
^ With "myrow['whatever']" I'm not sure, new to this stuff, but thought I'd post my code, maybe someone could whack up a code that functions The code of the refreshing part is below with all pages relevant to it

[PHP] RE: [PHP-DB] Dynamic Website Question!

2003-11-30 Thread JeRRy
x27;t want these to refresh, just the text from the database. What you have said below seems exactly what I want. But I have never used DHTML. Could you show me a example of both frames (just the source) of how one talks to another please? Jerry --- Bronislav Klucka <[EMAIL PROTECTED]> w

[PHP] Good php WebMail Clients thru apache

2003-11-16 Thread Jerry Alan Braga
Any suggestions ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] OT-Re: worm on th list

2003-08-21 Thread Jerry M. Howell II
ever have seen a wild virus emailed to me, this is a bad one. -- Jerry M. Howell II -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: arguments against moving site from Linux/Apache/PHP server to Windows/IIS/PHP needed

2003-07-24 Thread Jerry Artman
s don't care to unload or compile from source, a "Server" option for $500 will give you all kinds of GUI interfaces to the settings, again- unlimited users. Jerry Artman Budget and Reimbursement [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] Expensive WEB HOST NEEDED!!!!!

2003-06-24 Thread Jerry M. Howell II
es for free but anyplace thats free will probably have banners and mabe even watermarks. Most anyone can probably send you to a cheep place as prices have droped since I started but what your asking is for someone not to make a living? Kinda unreasonable. Anyways, I try and avoid these threads

Re: [PHP] Re: Warning Spammer

2003-06-10 Thread Jerry M. Howell II
chived on numerous sites. > So what your saying is that we password protect from ppl googleing up answers so one person can avoid spam? I personaly think that day will be a sad one. As of right now I see no php value to this thread so a;; rplies will be nicely sent to /dev/null . PS. Look into

[PHP] Please point me in the right direction

2003-03-25 Thread Jerry
eciated Thanks, Jerry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Powerpoint presentations?!?

2003-02-06 Thread Jerry Artman
FICEx PowerPoint for OSX should be fairly scriptable. Apple's OSAX is very easy to understand and use. Also powerpoint plays quicktime and wm files. Might it be possible to build the file in that format and then have played back in PP? (or as alternative to PP)? Jerry Artman Budget and Rei

[PHP] RE: iCal parser and importing iCal to database

2003-01-31 Thread Jerry Artman
Just drop on over to http://phpicalendar.sourceforge.net/nuke/ and I think you'll find what you are looking for. Jerry Artman Budget and Reimbursement [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php and asp

2003-01-09 Thread Jerry M. Howell II
Hello all I seem to recall php being able to provide some suport for asp. How would I turn this feature on? is it a line in the php.ini or is it a compile time option? -- Jerry M. Howell II -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   3   >