Re: [PHP] Changing Directory rights with chgrp or exec("chown")

2001-03-15 Thread Richard Lynch
> Is it possible to change the group rights on a directory like this? > > chgrp("/home/www/host/sitedir.com", "site1.com"); "site1.com" is a pretty unusual group name... I don't think that's valid... > It doesn't work for me and i have tried this: > exec(chown apache:site1.com /home/www/host/si

Re: [PHP] Dynamic pages

2001-03-15 Thread Richard Lynch
You can use PHP to write out the HTML to a file, instead of using echo/print. You'll have to fwrite() *ALL* your HTML, however. I did this for a site that got burned into a CD once. There are also some tools "out there" to "walk" a site and "steal" it, that you could use on your "work" site to

Re: [PHP] PHPDoc and file with function only

2001-03-15 Thread Richard Lynch
I think PHPDoc is only for documenting classes... -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Message - From: Remi Ricard <[EMAIL PROT

Re: [PHP] HTML character escape codes from beyond

2001-03-15 Thread Richard Lynch
Perhaps the user pasted in characters that caused those HTML codes to be part of their input... -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original

Re: [PHP] cannot use post

2001-03-15 Thread Richard Lynch
Be sure your DocumentRoot and directives match up... Also check for any Limit directives. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm - Original Messa

Re: [PHP] select * from nmensagem m, nusuario...

2001-03-15 Thread Richard Lynch
> select * from nmensagem m, nusuario u, nprefuser p where > m.cdpreferencia=p.cdpreferencia and p.flag=1; > > With "m.cdpreferencia=p.cdpreferencia" I should get just the values there > exists on m.preferencia and p.cdpreferencia? No, because you have a record for every single nusario, since you

Re: [PHP] Help! Cookies...

2001-03-15 Thread Richard Lynch
Cookies do not inherently support arrays. You'll have to serialize/unserialize your arrays to store them in cookies. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunt

Re: [PHP] Help. creating excel file form mysql

2001-03-15 Thread Richard Lynch
Excel can import tab-delimited (or CSV) files pretty darn easy... And you can spew those out very easily... -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm -

Re: [PHP] Putting php at end of html?

2001-03-15 Thread Richard Lynch
YES! The only "problem" will be that these .php pages will be maybe 5% slower since PHP is "parsing" them. -- Visit the Zend Store at http://www.zend.com/store/ Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusic.com/volunteer.htm ---

Re: [PHP] With all this talk about editors ...

2001-03-15 Thread Richard McLean
Many thanks Yasuo. Unless I've missed something (which is quite possible), that would seem to help if I was trying to do it at runtime, but this is a feature I need during development (ie a feature of the editor). cheers, Richard >http://www.php.net/manual/en/ref.funchand.php >

Re: [PHP] Putting php at end of html?

2001-03-16 Thread Richard Lynch
> > YES! > > The only "problem" will be that these .php pages will be > > maybe 5% slower since PHP is "parsing" them. > > That and all the links pointing to the old .html files will be > broken... That's what using .php in advance will avoid. > So if you mix PHP and HTML in a file, PHP will be

RE: [PHP] urlencode

2001-03-17 Thread Richard Kirk
No, its set to "off". -Original Message- From: John Lim [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 17, 2001 5:14 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] urlencode You have magic_quotes_runtime enabled which causes this behaviour. You can disable it by turning it off in your P

[PHP] Re: Zend?

2001-03-19 Thread Richard Lynch
> I've heard alot about the Zend Encoder. Using it can I encode I file so that > php still executes it, but a person cannot read my source by looking at the > file? Yes. You replace all of the files you wish to protect with their Encoded representations, and they're pretty much indecipherable --

[PHP] Re: php editors

2001-03-19 Thread Richard Lynch
> I am looking for good php editors. Currently, i am using PHP coder. It > highlights syntax and checks my syntax. It's also executes my PHP codes. Are > there any editors like that? I just want a editor that highlights my code > and check my syntax. Give the Zend IDE a trial run. You'll be able

Re: [PHP] if... then... else with HTML

2001-04-23 Thread Richard Crawford
Alternatively, and this is what I would do because it would be easier to maintain should you want to change the content later on, you could use includes as per the following: \n\nTry This\n\n\n"); if(condition) include("html_block_1.html"); else

Re: [PHP] insert data to mysql

2001-04-23 Thread Richard Crawford
Concatenate your string. "...VALUES ('".$client."','".$contact."')" (etc.) Or just replace the double-quotes within the string with single quotes. That should do it. >> Original Message << On 4/23/01, 10:32:47 AM, "shawn" <[EMAIL PROTECTED]> wrote regarding

Re: [PHP] link variables space problem in netscape

2001-04-24 Thread Richard Crawford
Two words: URL Encode. >> Original Message << On 4/24/01, 11:23:02 AM, "Mark Lo" <[EMAIL PROTECTED]> wrote regarding [PHP] link variables space problem in netscape: > Hi, > I am having a problem in link variables in netscape. etc. > www.domain.com?xx=

Re: [PHP] Reporting from Database

2001-05-02 Thread Richard Lynch
You should be able to test the ending time field in PHP and output different display based on that... Show a snippet of source code. PS You've tackled a really hard problem as a beginner -- Calenders *look* simple, are have all sorts of hidden complexities, as you've discovered. -- WARNING [EM

Re: [PHP] mailing list

2001-05-02 Thread Richard Lynch
> start sending email (this process would take many minutes). However before > this script finished, another copy of the same script started, and this new > copy was sending emails to the same users again. The original script > continued. Result: duplicate emails Wild Guess: You are using cron a

Re: [PHP] how to measure databases

2001-05-02 Thread Richard Lynch
You could maybe write a shell script owned by mysql, but executable by world, that looks at the file sizes. -- WARNING [EMAIL PROTECTED] address is not working -- Use [EMAIL PROTECTED] Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm Volunteer a little time: http://chatmusi

Re: [PHP] Browser Detection

2001-05-02 Thread Richard Lynch
> Is it possible with PHP (3.0.16) to detect which browser a user has and > then load an image based on the browser type? I've found the get_browser() > command in the manual, but it doesn't look like that does what I want, or I > could just be looking at it wrong. > > Has anyone tried this befor

Re: [PHP] session_register()

2001-05-02 Thread Richard Verstegen
Maybe this example will help you: Program 1: Program 2: Richard "Jennifer" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have been racking my brain with this for hours and I am not > getting anywhere. > >

Re: [PHP] Weird error...

2001-05-02 Thread Richard Verstegen
Check your php.ini [SESSION] url_rewriter.tags = . Richard ""elias"" <[EMAIL PROTECTED]> wrote in message 9coco0$uq8$[EMAIL PROTECTED]">news:9coco0$uq8$[EMAIL PROTECTED]... > For some reason, whenever i run my script for the first time in the

Re: [PHP] LDAP Authentication

2001-05-02 Thread Richard Lynch
>I am trying ot understand how could a PHP script authenticate against a LDAP tree (NDS) that >is not in the same host? > >Anyone has an example about that? No sample code, but I assume you just pass in the IP or hostname of the remote server for http://php.net/manual/en/function.ldap-connect.php

Re: [PHP] session array :-/

2001-05-02 Thread Richard Lynch
> $myArray=array(); Is this line getting executed that second time?... Also, I think it's better to register a variable *before* assigning any value to it... Whether this is just coding style or it actually matters, I dunno. -- WARNING [EMAIL PROTECTED] address is not working -- Use [EMAIL PRO

Re: [PHP] Checking query suceeded

2001-05-02 Thread Richard Lynch
> If I'm doing more than one query on a page what is the best way to check if > they all succeeded with out using transactions? You can check each query as it executes, and (perhaps) have your program logic do something intelligent in the case of individual failures. Another possbility is to do

Re: [PHP] Sort Question

2001-05-02 Thread Richard Lynch
> I am doing a dir list of an ftp and using sort to sort the dir list > alphabetically. What I am using now sorts it alphabetically but it sorts > the capital letters then the lower case so a capital "Z" would come before a > lower case "a" > > The Code I am using is: > > sort($complete_list); >

Re: [PHP] GD and arrays

2001-05-02 Thread Richard Lynch
> I have the following case. I am working on a PHP script which contains an > array. Now I want to include a PHP created picture, which is a .php file > (gd, now further called as the picture.php file). Till so far, everything is > ok. The picture is created following as wished. > > Now , I want t

Re: [PHP] Problems with sprintf and swapping variables

2001-05-02 Thread Richard Lynch
> Happy %2/$d'th birthday %1/$s. > > like the docs says your supposed to do it doesn't work and all you see is: > Happy $d'th birthday $s. > > What is up with this.. if you use %2/%d it sort of works, but it throws all > my other variables out of whack.. any help with this would be appreciative.

Re: [PHP] compare PHP with C for apache modules

2001-05-02 Thread Richard Lynch
> What are benefits and losses of having a PHP module for apache instead of of a C module if PHP modules are without xml and mysql support. For starters, it's way easier to develop a web application in PHP than in C. Not even sure I'm understanding the question properly... There are a *LOT* mor

Re: [PHP] PHP as MODULE & CGI Version of PHP

2001-05-02 Thread Richard Lynch
> I was going through this fantastic tutorial on HTTP > Authentication at Zend.com! It mentioned that to have > this working, PHP must be "Installed as a Module" and > NOT as "CGI Version". Because it will not work in CGI > version. > Tell me something, how and from where can i install > PHP as a

Re: [PHP] http_post_files not returning file type

2001-05-02 Thread Richard Lynch
> this is taken straight from phpinfo(), as you can see > its all there except for type. I was wondering why > wouldnt my RH7.0, Apache 1.3.12 w/ PHP4.0.4pl1 > know what the file type was... Because your browser didn't tell it? I'm pretty sure that info comes *from* the browser... PHP really ha

[PHP] Protecting programs

2001-05-03 Thread Richard Kurth
Is there any way to protect a php program. Like you can other software were you can limit the amount of time they can use it. something like a compiled c program that the php program would have to look of a cod otherwise it will not work. Or am I just dreaming -- PHP General Mailing List (http

Re[2]: [PHP] Protecting programs

2001-05-03 Thread Richard Kurth
Hello MaD, what is obfuscation/encryption Thursday, May 03, 2001, 5:01:34 PM, you wrote: MaD> also sprach Richard Kurth (on Thu, 03 May 2001 04:31:42PM -0700): >> Is there any way to protect a php program. Like you can other software >> were you can limit the amount of time

[PHP] Getting the first part out of a string

2001-05-03 Thread Richard Kurth
I know how to get last part of a string out of a string But how do I get the first part before the needle On the example below I just what domain $hostdomain= domain.com $host = substr (strrchr ($hostdomain, "."), 1); echo $host; com -- PHP General Mailing List (http://www.php.net/) To

[PHP] HELP can not see data or tables in database

2001-05-03 Thread Richard Kurth
I have a major problem could somebody take a seeress look at this mysql running on cobalt raq4 I have looked through the archives and looked at the manual can not find anything to explain this nothing in the mysql log file I can not access the databases from the web browser I get empty data

[PHP] php installed as cgi with mysql support

2001-05-04 Thread Richard Kurth
Sense php4 comes with mysql access in it already when I install a cgi version of php do I still need to do it this way ./configure ==with mysgl or can you just do a ./configure and would you still have access to mysql. -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] Netscape and post

2001-05-04 Thread Richard Kurth
I am having problems with Netscape and post in a form In I.E. post works fine but in netscape it just gives me a Method Not Allowed The requested method POST is not allowed for the URL /scripts/index.html. Why is this doing this. Sometimes I just hate Netscape -- PHP General Mailing List (h

Re[2]: [PHP] Netscape and post

2001-05-04 Thread Richard Kurth
Hello Chris, Friday, May 04, 2001, 10:40:12 PM, you wrote: Chris> On 4 May 2001 21:48:46 -0700, Richard Kurth <[EMAIL PROTECTED]> wrote: >> I am having problems with Netscape and post in a form >> In I.E. post works fine but in netscape it just gives me a >> Method N

[PHP] IP address management tool

2001-05-08 Thread Richard Ellerbrock
want to re-invent the wheel. Any pointers will be most grateful. Please copy me on replies as I am not on the list. Thanks. -- Richard Ellerbrock [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] Is this still true?

2001-05-11 Thread Richard McLean
I thought that PHP was available as a ISAPI & NSAPI plug-in already? Is it not? cheers, Richard -- 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]

Re: [PHP] Is this still true?

2001-05-11 Thread Richard McLean
Hi All, Apologies for the repost php-dev guys, I didn't think it had gotten through. cheers, Richard -- 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

[PHP] pulling data out of a string

2001-05-14 Thread Richard Kurth
$tld = net Or even worse this $fullhostname = "mysit.dom.net"; $host = $domain = mysit.dom $tld = net Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

Re[2]: [PHP] pulling data out of a string

2001-05-14 Thread Richard Kurth
this >>$fullhostname = "www.mysit.dom.net"; >>I need >>$host= www >>$domain = mysit.dom >>$tld = net >> >>or this >>$fullhostname = "mysite.domain.net"; >>$host = >>$domain = mysite.domain >>$tld = net >> >>Or e

[PHP] Needing help hear

2001-05-15 Thread Richard Kurth
customers"; $result = mysql_query($sql); $num_rows = mysql_num_rows($result); while ($myrow = mysql_fetch_array($result)){ $recipient=$myrow["email"] . ","; } Best regards, Richard mailto:[EMAIL PROTECTED]

[PHP] Integer size limitations

2001-05-15 Thread Richard Ellerbrock
(no error though, just wrong results!!!). Is there anyway to make the number unsigned or a long int as in C? Else, how do I do binary arithmetic for IP addresses? This is using 4.04p1. -- Richard Ellerbrock [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Replacing JavaScript functionality with PHP

2001-05-15 Thread Richard Notley
e looking through the archives, but... well needles and haystacks! Thanks, Richard   -- 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]

[PHP] Need a little help with array

2001-05-15 Thread Richard Kurth
I am trying to get the first name and Last name plus the email address out of the database in a format like this Richard Kurth<[EMAIL PROTECTED]>;Richard Kurth<[EMAIL PROTECTED]> so I can put it in the BCC section of a mail all customer program What I have below works

Re[2]: [PHP] Need a little help with array

2001-05-15 Thread Richard Kurth
gt; Sincerely, Maxim Maletsky> Maxim Maletsky Maxim Maletsky> Founder, Chief Developer Maxim Maletsky> PHPBeginner.com (Where PHP Begins) Maxim Maletsky> [EMAIL PROTECTED] Maxim Maletsky> www.phpbeginner.com Maxim Maletsky> -Original Message- Maxim Maletsky> From: Richar

Re[4]: [PHP] Need a little help with array

2001-05-15 Thread Richard Kurth
Maxim Maletsky> Sincerely, Maxim Maletsky> Maxim Maletsky Maxim Maletsky> Founder, Chief Developer Maxim Maletsky> PHPBeginner.com (Where PHP Begins) Maxim Maletsky> [EMAIL PROTECTED] Maxim Maletsky> www.phpbeginner.com Maxim Maletsky> -Original Message- Maxi

[PHP] Is there a better way to do this

2001-05-16 Thread Richard Kurth
shut down. if(file_exists("userdata")) { end; } elseif(file_exists("userdata1")) { copy('userdata1','userdata') ; system("rm userdata1"); end; } else { exit; } < re

Re[2]: [PHP] Is there a better way to do this

2001-05-16 Thread Richard Kurth
are you trying to do that for? scott [gts]> there's probably a much cleaner way to do what you scott [gts]> want, but i dont really know what you want to do, scott [gts]> so i cannot suggest anything >> -Original Message- >> From: Richard Kurth [mail

[PHP] Performance issue

2001-05-17 Thread Richard Heyes
Can anyone advise on a performance issue: which is gonna take longer, gzcompress()ing a html page (eg phpinfo output) and writing to disk or writing the uncompressed version to disk? Thanks! -- Richard Heyes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

[PHP] Problem with PHP_SELF

2001-05-18 Thread Richard Kurth
direct links for ($i = 1; $i <= $num_pages; $i++) { if ($i != $page) { echo "$i"; } else { echo " $i "; } } // Next if ($page != $num_pages) { echo "Next"; } Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP

[PHP] Getting email out of a database

2001-05-19 Thread Richard Kurth
IL PROTECTED],[EMAIL PROTECTED] But now I would like to get the first address in the list into a variable and the rest in the list to a second variable Like this $v1= [EMAIL PROTECTED] $v2= [EMAIL PROTECTED],[EMAIL PROTECTED],[EMAIL PROTECTED] How would I go about this B

[PHP] mail function. not working

2001-05-19 Thread Richard Kurth
er $message .= "http://northwesthost.com";; $headers .= "From: Richard Kurth <[EMAIL PROTECTED]>\n"; $headers .= "X-Sender: <[EMAIL PROTECTED]>\n"; $headers .= "X-Mailer: NorthWestHost\n"; $headers .= "X-Priority: 1\n"; $headers .= "Ret

RE: [PHP] Re: [PHP-DEV] Fork() in php?

2001-05-20 Thread Richard Heyes
> Nope, but you can use the ticks feature to do some of this. Is there any documentation for this? I searched the manual and php.net but came up with nothing :( Cheers. -- Richard Heyes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additio

[PHP] should be simple

2001-05-20 Thread Richard Kurth
I am trying to pull html code out of a database to put in page something like this which I have stored in a database under cheader mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

Re: [PHP] should be simple

2001-05-20 Thread Richard Kurth
Hello Richard, Never Mind It was a stupid mistake I am querying all the data in a function and forgot to add the variable to the global list work just fine DU!! Monday, May 21, 2001, 7:08:16 AM, you wrote: Richard Kurth> I am trying to pull html code out of a database to put in page Rich

[PHP] Virtual Host document directory.

2001-05-23 Thread Richard Quadling
son is that the script needs to see if certain files exist so that the resultant HTML shows the correct info. Some of them are in both sites, some files are only in 1 or 2 sites, but they always have the same name. I assume there is a variable somewhere? Ideas/suggestions please. Thanks in ad

[PHP] Virtual Hosts document root directory.

2001-05-23 Thread Richard Quadling
son is that the script needs to see if certain files exist so that the resultant HTML shows the correct info. Some of them are in both sites, some files are only in 1 or 2 sites, but they always have the same name. I assume there is a variable somewhere? Ideas/suggestions please. Thanks in ad

[PHP] Running Crontab on php script

2001-05-23 Thread Richard Kurth
ome/auto/mail.php > /tmp/logdump.LOG Best regards, Richard mailto:[EMAIL PROTECTED] -- 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]

[PHP] Problem with PHP as CGI

2001-05-23 Thread Richard Kurth
information for debugger/profiler -z Load Zend extension . -l Syntax check only (lint) -m Show compiled in modules -i PHP information -h This help Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://w

Re[2]: [PHP] Problem with PHP as CGI

2001-05-23 Thread Richard Kurth
Hello Stuart, yes there is a Wednesday, May 23, 2001, 9:06:08 PM, you wrote: Stuart J. Browne> "Richard Kurth" <[EMAIL PROTECTED]> wrote in message Stuart J. Browne> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... >> >> I have php config as a

Re[2]: [PHP] Problem with PHP as CGI

2001-05-23 Thread Richard Kurth
w of a way to keep the path to PHP from showing up when the PHP CGI >> script is hit via HTTP? >> >> On Wed, 23 May 2001, Stuart J. Browne wrote: >> > "Richard Kurth" <[EMAIL PROTECTED]> wrote in message >> > [EMAIL PROTECTED]">news:

RE: [PHP] mysql_escape_string

2001-12-26 Thread Richard Heyes
> How do I remove the slashes from mysql_escape_string when I pull the > string back out of the DB and want to display it? You don't need to. The escaping is only to ensure the query doesn't break. When it's in the db and when it's returned, it will not have the slas

RE: [PHP] Translating email to (real) plain text...

2001-12-27 Thread Richard Heyes
r the imap extension, or the mimeDecode class available in PEAR, or here: http://www.phpguru.org -- Richard Heyes "If you have any trouble sounding condescending, find a Unix user to show you how it's done." - Scott Adams -- PHP General Mailing List (http://www.php.net/) To un

RE: [PHP] special chars in SQL string

2002-01-04 Thread Richard Black
Doesn't putting a backslash in front of the offending character escape it?? Isn't that what the PHP addslashes() function does??? Richy -Original Message- From: Daniel Harik [SMTP:[EMAIL PROTECTED]] Sent: 03 January 2002 19:00 To: [EMAIL PROTECTED] Subject:[PHP] special

[PHP] Checking for characters in string

2002-01-04 Thread Richard Black
would not. Whats the most compact way to do this? substr? ereg? Richy ====== Richard Black Systems Programmer, DataVisibility Ltd - http://www.datavisibility.com Tel: 0141 435 3504 Email: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.ph

[PHP] Cannot find imap library

2002-01-04 Thread Richard Brust
, and still are, working fine. It's just that I cannot recompile PHP with IMAP support. Richard Brust IT Manager Technology Business Research Hampton, NH. USA -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PRO

[PHP] Remote Cookie ID and Web Statistics

2002-01-06 Thread Richard Spangenberg
Hello, - for something a little different... Does anyone have experience using Javascript on remote server html delivered pages to capture data in a PHP MySQL database resident at my domain. I would like to build a customer profile database for a customer using a permanent cookie on a visitor's

[PHP] Remote Javascript call to PHP MySQL Database

2002-01-06 Thread Richard Spangenberg
Does anyone have experience using Javascript on remote pages to capture data in a PHP MySQL database. I would like to build a customer profile database for a customer using a permanent cookie on a site visitor's machine to ID them and track their usage. Any suggestions would be appreciated. Mode

[PHP] Re: Remote Javascript call to PHP MySQL Database

2002-01-06 Thread Richard Spangenberg
Note: Please disregard this message as it was restated and resent recently. "Richard Spangenberg" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Does anyone have experience using Ja

Re: [PHP] Remote Cookie ID and Web Statistics

2002-01-07 Thread Richard Spangenberg
ume it's not possible > either because the ISP doesn't host it or for some political reason. > > > Miles Thompson > > > At 10:28 PM 1/6/2002 -0500, Richard Spangenberg wrote: > >Hello, - for something a little different... > > > >Does anyone have ex

Re: [PHP] Remote Cookie ID and Web Statistics

2002-01-07 Thread Richard Spangenberg
you > outlined in your reply, but why not have a second Java applet to update a > remote database? PHP doesn't have ownership over the database. > > Miles > > At 08:06 AM 1/7/2002 -0500, Richard Spangenberg wrote: > >Miles, > > > >The reason for the javascri

Re: [PHP] no one can find solution to my problem??

2002-01-08 Thread Richard Baskett
Well it looks to me that your headers variable is an array and that isnt really going to work with the mail function unless you arraywalk it. Hopefully that helps, since it's the only thing I can think of > > /* recipients */ > $to = "Mary <[EMAIL PROTECTED]>" ; > > /* subject */ > $subject

Re: [PHP] Maybe OT but I was wondering....

2002-01-08 Thread Richard Crawford
ou > have a url or maybe a book title that I could check out to research this a > bit further? > > thanks for your help > Ben > > -- Sliante, Richard S. Crawford mailto:[EMAIL PROTECTED] http://www.mossroot.com AIM: Buffalo2K ICQ: 11646404 Yahoo!: rscrawfo

Re: [PHP] Form Problem

2002-01-09 Thread Richard Crawford
; PK> > PK> My Form > PK> > PK> > PK> > > PK> My name is: > PK> > > PK> > PK> > PK> > PK> > > > -- Sliante, Richard S. Crawford mailto:[EMAIL PROTECTED] http://www.mossroot.

[PHP] Finding PHP Developers for Remote Project

2002-01-10 Thread Richard Spangenberg
I may need some help on a project I am working on. Does anyone know of a good source of PHP developers where I can advertise my needs? Rick -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

[PHP] SUMMARY: Seg fault when using SNMP on Redhat 7.x

2002-01-11 Thread Richard Ellerbrock
I have been having problems with Segmentation faults when using SNMP with PHP. This used to work just fine on my Redhat 6.2 box. Appears that the problem is related to the way the standard Redhat 7.x ucd-snmp RPM is built. Rebuilding the RPM using the latest software obtained from http://sourcefor

[PHP] PHP Sessions and SSL

2002-01-11 Thread Richard Hilton
les). This "fix" was done using session_cache_limiter('private'), but I don't want to use this due to these caching effects. Does anyone have any suggestions that could fix this problem? I would be very grateful. Richard Hilton -- PHP General Mailing List (http://www.

[PHP] Sessions and SSL

2002-01-11 Thread Richard Hilton
les). This "fix" was done using session_cache_limiter('private'), but I don't want to use this due to these caching effects. Does anyone have any suggestions that could fix this problem? I would be very grateful. Richard Hilton. -- PHP General Mailing List (http://www.

[PHP] OT kind of..

2002-01-12 Thread Richard Baskett
Ok I have looked everywhere to try to figure out why I get the stupid warning: Warning: Failed opening '/phpinc/query.inc' for inclusion (include_path='.:/usr/local/lib/php') in /Users/murlyn/Sites/bakos/ index.htm on line 2 Ok I know that it's because it can't find the script, but my problem li

Re: [PHP] Newbie database question

2002-01-13 Thread Richard Crawford
ay enter and not create a new entry > -- Sliante, Richard S. Crawford mailto:[EMAIL PROTECTED] http://www.mossroot.com AIM: Buffalo2K ICQ: 11646404 Yahoo!: rscrawford MSN: [EMAIL PROTECTED] "When you have lost the ability to laugh at yourself, you have lost the abili

Re: [PHP] Newbie database question

2002-01-13 Thread Richard Crawford
to be sure, but not impossible. Dean Ouellette wrote: > MySql > > > At 10:10 AM 1/13/2002 -0800, Richard Crawford wrote: > >> Which database are you using? >> >> >> Dean Ouellette wrote: >> >>> I am entering info from form into database, is there

[PHP] Re: Finding PHP Developers for Remote Project

2002-01-14 Thread Richard Spangenberg
thanks,.. guru.com is great. And, thank all of you for your great help. Terrific, etc. Rick "Laserjetter" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > You could try guru.com > > LJ > > > "Richard Spangenberg

[PHP] Re: PHP4.1.1 + RH7.2 + UCD-Snmp

2002-01-14 Thread Richard Ellerbrock
A couple of days ago I posted the solution. See http://groups.google.com/groups?q=ipplan&hl=en&lr=lang_en|lang_de&newwindow=1&selm=sc3eaf22.018%40eskom.co.za&rnum=4 Antonio S. Martins Jr. wrote: > Hi Everybody, > >Has anyone doing it sucefuly? I can compile it. The phpinfo(); call > return

Re: [PHP] Setting cookie very broken! Please help!

2002-01-15 Thread Richard Crawford
t.php page work again...nothing else. Please, if > anybody could assist or ask me for any other information required to > diagnose, I would be very thankful. I need to get this working ASAP, and > have been fighting it to no avail for the past few hours. > > -- Sliante, Ric

Re: [PHP] PHP 4.1.1 and Mac OS X 10.1.2

2002-01-15 Thread Richard Baskett
Here's the page you want: http://www.entropy.ch/software/macosx/php/ Rick "The only way to have a friend is to be one." - Ralph Waldo Emerson > From: Rodrigo Peres <[EMAIL PROTECTED]> > Date: Tue, 15 Jan 2002 18:14:12 -0200 > To: PHP <[EMAIL PROTECTED]> > Subject: [PHP] PHP 4.1.1 and Mac OS X

Re: [PHP] PHP Security - "view source code"

2002-01-16 Thread Richard Crawford
w easy/hard is it to view the PHP source code when you're at website? > > I noticed when I was using Internet Explorer, if I pressed "view > source"...it would show the HTML but not the PHP. > > -Phil > > -- Sliante, Richard S. Crawford mailto:[EM

Re: [PHP] PHP Security - "view source code"

2002-01-16 Thread Richard Baskett
PHP is a server side language so the PHP engine parses all the php code in your webpage and then spits out html code. So when surfing through a website that uses PHP you will never see PHP code unless of course you screwed up and echoed the data :) Rick "How wonderful it is that nobody need wai

Re: [PHP] PHP & HTML: newbie question

2002-01-16 Thread Richard Baskett
e and walk right into it, risking the bruises as hard knocks. You are likely to find it is not as tough as you had thought. Or you may find it plenty tough, but also discover you have what it takes to handle it." - Norman Vincent Peale > From: Richard <[EMAIL PROTECTED]> > Date:

Re: [PHP] PHP & HTML: newbie question

2002-01-16 Thread Richard Crawford
Just out of curiosity, what is the name of your page? It might be as simple as making sure it has a .php extension on your page. If it has an .html extension it won't work properly. Just a thought; I could be wrong about this. Nick Wilson wrote: > * On 16-01-02 at 22:29 > * R

Re: [PHP] Mac OSX !?!?!?

2002-01-16 Thread Richard Baskett
Kind of hard to say without source code for the session part.. Although the MySQL warnings, I got those because MySQL does not automatically start in OSX, if you know it's started then Im not sure, but if not.. go here to get the autostart utility: http://www.entropy.ch/software/macosx/mysql/ T

Re: [PHP] encrypting passwords etc..

2002-01-17 Thread Richard Baskett
I would definitely have to agree. The way I do it is encrypt it one way and there is no way to recover the password.. at least anytime soon within the next year or so. If they forget their password I give them a temporary password and then they can go change it to whatever they want, if they wan

Re: [PHP] "/19", the "/" doesn't work??

2002-01-18 Thread Richard Crawford
that "/1" is like > "/r", "/n", etc. So, what substitute do I need to use to make it "/19" > instead of "9". I don't know of any PHP code or shortcut to cancel out that > effect. > > Thanks, > Scott > > > >

Re: [PHP] quick and easy(php newbie)

2002-01-18 Thread Richard Crawford
returns this: > > > http://www.me.com/> > > http://www.me.com/> > > > i want it to display as follows: > > > link="http://www.me.com/";> > > > link="http://www.me.com/";> > > > now it is writing to the

Re: [PHP] printing html

2002-01-18 Thread Richard Crawford
thanks for your advice. > best regards.. > > (sorry me... my english isn't good enough) :-) > > > > -- Sliante, Richard S. Crawford mailto:[EMAIL PROTECTED] http://www.mossroot.com AIM: Buffalo2K ICQ: 11646404 Yahoo!: rscrawford MSN: [EMAIL

Re: [PHP] how to send to URL on if statement?

2002-01-18 Thread Richard Crawford
:[EMAIL PROTECTED]... > >>>Can anyone advise or direct me to the documentation that references how >>> > to > >>>send a user to a URL if an 'if' statement is satisfied? >>> >>Assuming you hadn't sent any output before: >

Re: [PHP] RTFM

2002-01-18 Thread Richard Crawford
w.explodingnet.com > > > > -BEGIN PGP SIGNATURE- > Version: GnuPG v1.0.6 (GNU/Linux) > > iD8DBQE8SJLTHpvrrTa6L5oRAg8SAKCLzzFk6i29BzABak9ezbtsVIIw9wCgnn4o > +Evq2JM0f2FDj1O1WEvm82o= > =NaDy > -END PGP SIGNATURE- > > -- Sliante, Richard S.

<    9   10   11   12   13   14   15   16   17   18   >