[PHP] Questions on PHPs openssl extensions

2002-11-29 Thread Richard Rojas
h), I think I can pull this off. Please help me. Happy ThanksGiving, Richard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Struggling with code

2002-12-04 Thread Richard Baskett
Get rid of the double quotes around your variables so: $sql = "UPDATE $table_name SET name='$name', lname='$lname', mobil='$mobil' etc etc etc Cheers! Rick "Sir my concern is not whether God is on our side. My great concern is to be on God's side." - Abraham Lincoln > On Thursday 05 December 2

Re: [PHP] Hiding Errors

2002-12-05 Thread Richard Baskett
If it is a function that you are getting an error on, just go ahead and put a '@' sign before the function so for example @fopen(); or you can change the error reporting in the php.ini file. I do believe there is an error reporting function also, but off the top of my head I cant remember what it

[PHP] Flushing Output

2002-12-10 Thread Richard Baskett
Is there a way of flushing output to the browser. So for example, I have a script that checks things in a database, every check, or every hundred checks it would be nice to output something to the browser.. currently it finishes what it does, or after a minute or so it then shows the final page wi

[PHP] fgetcsv Help

2002-12-11 Thread Richard Baskett
I am parsing a csv file with fgetcsv and the fields are surrounding by double quotes, now I am running into a problem periodically that when there are quotes within the value it is treating it like another value instead of the same value. Any ideas on how to get around that? I am thinking I might

Re: [PHP] fgetcsv Help

2002-12-11 Thread Richard Baskett
I did email the company that the csv feed is coming from so we'll see what comes of that. I really hope they fix it. Well here is what I did to solve the problem: I pulled the csv file in using file(), then found the string length, used substr() to get rid of the first double quote in the line a

Re: [PHP] Escaping '#' Sign

2002-12-11 Thread Richard Baskett
Why don't you just try: $cust2 = str_replace('#','#',$cust); That should replace all instances of # with it's html entity equivalent. If that doesn¹t work then there is something else wrong with your script and we'll need to see it all! :) Rick "People who drink to drown their sorrow should be

[PHP] Execute a cgi inside of php?

2002-12-11 Thread Richard Creech
http://www.php.net/manual/en/function.include.php "Warning Windows versions of PHP prior to PHP 4.3 do not support accessing remote files via this function, even if allow_url_fopen is enabled." The mail archives didn't shed any light on this question. What alternatives might

[PHP] Delete array element

2002-12-11 Thread Richard Baskett
How can I delete a key and it's value from an array? for example: $test = array(0=>'yes', 2=>'no', 5=>'maybe', 7=>'so'); And I wanted to delete the second key "2" so I could end up with an array like so: $test = array(0=>'yes', 5=>'maybe', 7=>'so'); How would I go about doing that? Thanks! R

Re: [PHP] Delete array element

2002-12-11 Thread Richard Baskett
; Date: Wed, 11 Dec 2002 21:37:18 -0500 > To: "'Richard Baskett'" <[EMAIL PROTECTED]>, "'PHP General'" > <[EMAIL PROTECTED]> > Subject: RE: [PHP] Delete array element > >> How can I delete a key and it's value from an array? >>

Re: [PHP] Delete array element

2002-12-11 Thread Richard Baskett
*sigh* n/m I just got rid of the curly braces and that did the trick. Thanks! Rick "Science without religion is lame, religion without science is blind." - Albert Einstein > From: Richard Baskett <[EMAIL PROTECTED]> > Date: Wed, 11 Dec 2002 18:50:20 -0800 > To: <[EM

Re: [PHP] take text before '-' and after it

2002-12-12 Thread Richard Baskett
$song = "They Might Be Giants - No!.mp3" $arr = explode(' - ', $song); $length = strlen($arr[1]); // gets char length of song $artist = $arr[0]; $song = substr($arr[1], 0, ($length-4); // deletes the .mp3 off of song name Cheers! Rick He who is devoid of the power to forgive is devoid of the p

Re: [PHP] PHP Redirects

2002-12-12 Thread Richard Baskett
Sure is: header("Location: somepage.ext"); exit; Cheers! Rick "If you think you're too small to have an impact, try going to bed with a mosquito in the room." - Anita Koddick > From: "James Johnson" <[EMAIL PROTECTED]> > Date: Thu, 12 Dec 2002 12:30:19 -0800 > To: <[EMAIL PROTECTED]> > Subject

Re: [PHP] Session Issues when Cookies are Disabled

2002-12-12 Thread Richard Baskett
You could put it in yourself action="somepage.php" or my preference is stick the session as a hidden field /> Cheers! Rick "Finish each day and be done with it. You have done what you could; some blunders and absurdities have crept in; forget them as soon as you can. Tomorrow is a new day; y

[PHP] SELECTing a row by maximum value

2002-12-30 Thread Richard Fox
(ifield) should return id=2, ifield=200 (but this doesn't work, of course) Many thanks, Richard

[PHP] use included GD of external

2002-12-31 Thread Richard Pijnenburg
new year Richard Pijnenburg

RE: [PHP] use included GD of external

2002-12-31 Thread Richard Pijnenburg
uot; I have only taken a brief preliminary look at it, but it seems to include mainstream gd fixes up through version 2.0.2. but sins 2.0.9 is out, witch version should I use ? thanks. Richard Pijnenburg Klik-on Internet Solutions > -Original Message- > From: Rick Widmer [mailto:[EMAIL

Re: [PHP] Excel to MySQL

2003-01-03 Thread Richard Baskett
You could export, or save as a tab delimited text file, then go ahead and use phpMyAdmin or a custom script to pull all that data into the database. It really shouldn¹t be much of a problem coming from Excel. Cheers! Rick "Finish each day and be done with it. You have done what you could; some b

Re: [PHP] Hello and help

2003-01-03 Thread Richard Baskett
Use this instead: \n"); print ("\n"); print ("\n"); print ("Calender \n"); print ("\n"); print("{$result['meeting_name']}\n") or die ("you suck"); mysql_close ($Link); ?> So basically make sure you escape your double quotes within your print statements, plus yo

[PHP] system()

2003-01-05 Thread Richard Baskett
When using the system() function, let's say starting up a program, can that program start in the background while the rest of the page is parsed or does it have to wait until the system command has finished whatever it is doing? Rick "Dost thou love life? Then do not squander time; for that's the

[PHP] system()

2003-01-06 Thread Richard Baskett
When using the system() function, let's say starting up a program, can that program start in the background while the rest of the page is parsed or does it have to wait until the system command has finished whatever it is doing? Rick "Dost thou love life? Then do not squander time; for that's the

[PHP] Empty messages from PHP General...

2003-01-06 Thread Richard Baskett
Any idea why Im getting these empty messages? Rick "Freedom and immorality can not co-exist because freedom requires personal responsibility." - Unknown -- Forwarded Message From: [EMAIL PROTECTED] Date: Mon, 6 Jan 2003 17:41:19 -0500 (EST) -- End of Forwarded Message -- PHP Genera

[PHP] PHP sendmail configuration

2003-01-06 Thread Richard Baskett
Ok I know it's off topic, but I've been working on this for over 5 hours now and I almost have it configured, but something is definitely wrong! Basically I can send email using sendmail by this command: echo "Just a test" | mail -s "test" [EMAIL PROTECTED] Now [EMAIL PROTECTED] receives the emai

[PHP] php.ini, mysql, recompiled php

2003-01-10 Thread Richard Baskett
For some reason the php.ini file is not being compiled into php on runtime with Apache 2.. I tried to make a change within the php.ini mysql.default_socket or something similar to change where php looked for the mysql socket and it wouldn¹t show up on phpinfo.. so I changed it within the httpd.con

[PHP] Save Dialog

2003-01-14 Thread Richard Rojas
Hi guys, Is there a way for PHP to invoke the Save Dialog on the client's PC? And after choosing a filename, save the contents of a TextArea into their hard drives? --- Richard --- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why PHP doesn't work with Apache2?

2003-01-23 Thread Richard Baskett
Ok I am hearing a bad rumor that Red Hat 8.0 and the Mac xserve both come with Apache 2.. now is this a rumor or is this true? If it's true.. why? And does anybody have any experience in uninstalling Apache 2 on the xserve and does it break anything? Cheers! Rick Don't walk in front of me, I m

Re: [PHP] Why PHP doesn't work with Apache2?

2003-01-23 Thread Richard Ellerbrock
On Thu, 23 Jan 2003 12:28:21 -0800, Richard Baskett wrote: > Ok I am hearing a bad rumor that Red Hat 8.0 and the Mac xserve both come > with Apache 2.. now is this a rumor or is this true? > > If it's true.. why? And does anybody have any experience in uninstalling > Apache

Re: [PHP] checkboxes & php

2003-01-24 Thread Richard Whitney
## the following checkboxes are checked? ### ### ### ### ### ### ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney Transcend Development Producing the next phase of your internet presence. [EMAIL

Re: [PHP] checkboxes & php

2003-01-24 Thread Richard Whitney
oxes are checked? ### ### ### ### ### ### ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney Transcend Development Producing the next phase of your internet presence. [EMAIL PROTECTED] htt

Re: [PHP] checkboxes & php

2003-01-24 Thread Richard Whitney
tp://www.php.net/unsub.php ### > ### > ### ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney Transcend Development Producing the next phase of your internet presence. [EMAIL PROTECTED] http://xend.net 602-971-2791 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] checkboxes & php

2003-01-24 Thread Richard Whitney
be, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney Transcend Development Producing the next phase of your internet presence. [EMAIL PROTECTED] http://xend.net 602-971-2791 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] sessions IE 6.0 problem

2003-01-24 Thread Richard Whitney
ozillo and had no problems. ### ### -mm ### ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney Transcend Development Producing the next phase of your internet presence. [EMAIL PROTECTED] http://xend

Re: [PHP] + in filenames

2003-01-25 Thread Richard Whitney
ibe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney Transcend Development Producing the next phase of your internet presence. [EMAIL PROTECTED] http://xend.net 602-971-2791 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] + in filenames

2003-01-25 Thread Richard Whitney
dd slashes to prevent certain errors ### $picture_name = strip_tags($_FILES['picture']['name']); ### $picture_name = addslashes($picture_name); ### $picture_name = str_replace("\r\n", "", $picture_name); ### $picture_n

Re: [PHP] Re: How do you update multiple rows at the same time?

2003-01-27 Thread Richard Whitney
pointers or example code ### > ### > ### > Steve Jackson ### > Web Developer ### > Viola Systems Ltd. ### > <http://www.violasystems.com/> http://www.violasystems.com ### > [EMAIL PROTECTED] ### > Mobile +358 50 343 5159 ### > ### > ### > ### > ### > #

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

2003-01-30 Thread Richard Baskett
Doesn't iCal use the vCalendar vCal format? Kind of like vCards, but to deal with Calendar information.. it should be easy to write something that will parse that.. Cheers! Rick "The greatest trick the devil ever played was convincing the world he didn't exist." - Unknown > From: "Reuben D. Bu

Re: [PHP] DB row selection

2003-02-19 Thread Richard Whitney
t an extra query? ### ### thx, ### ### Hans ### ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transcend Development Producing the next phase of your internet presence. [EMAIL PRO

Re: [PHP] Passing info to forms

2003-02-19 Thread Richard Whitney
p://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transcend Development Producing the next phase of your internet presence. [EMAIL

Re: [PHP] Passing info to forms

2003-02-19 Thread Richard Whitney
p://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transcend Development Producing the next phase of your internet presence. [EMAIL

Re: [PHP][PHP] Money Decimals

2003-02-19 Thread Richard Whitney
List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transcend Development Producing the next phase of your internet presence. [EMAIL PR

Re: [PHP] is there php debuggers or IDE under Linux?

2003-02-20 Thread Richard Whitney
d ### dbg-client for this OS. ### Which php-debugger do you use under Linux? ### ### Thank you. ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transcend Development Producing the next p

Re: [PHP] is there php debuggers or IDE under Linux?

2003-02-20 Thread Richard Whitney
# ### ### Thank you. ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transcend Development Producing the next phase of your internet presence. [EMAIL PROTECTED] * http://xend.

Re: [PHP] Dynamic Dropdowns

2003-02-21 Thread Richard Whitney
t/unsub.php ### ### -- Richard Whitney * Transcend Development Producing the next phase of your internet presence. [EMAIL PROTECTED] * http://xend.net* 6

[PHP] Putting text data into a associative array

2003-02-24 Thread Richard Kurth
I need to add the following to an array so that I can add,delete and change the data to the right of the last : I am thinking I first have to split this into an array and then split the part I what into another array. Would this be called a associative array? How do I create this type of array from

[PHP] array question

2003-02-24 Thread Richard Kurth
,tester7b -- Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Editors

2003-02-25 Thread Richard Whitney
Recycled Beowulf Project ### Looking for throw-away or obsolete computers and parts ###to recycle into a Linux super computer ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transce

[PHP] Empty Query

2003-02-25 Thread Richard Whitney
ls` , `location` , `img`, `tstamp`, `style`) ### VALUES ('', '$serial', '$model', '$yr_blt', '$km', '$price', ### '$hours', ### '$d

Re: [PHP] mysql trouble

2003-02-25 Thread Richard Whitney
Quoting Luis A <[EMAIL PROTECTED]>: ### hi pasl i got a troblem here ### ### ### if some one can help me ? ### ### take a look at this ### ### ### ### ### HE DOES NOT WORKING ### ### any subjest ? ### ### ### ### -- Richard Whitney * Transcend Development Producing th

[PHP] php Warning help!

2003-02-26 Thread Richard Baskett
Warning: Unknown(path/index.php): failed to create stream: Permission denied in Unknown on line 0 Warning: Unknown(): Failed opening '/path/index.php' for inclusion (include_path='.:/path/phpinc/') in Unknown on line 0 What in the world is going on here? I've set all my files to 777 just to test

[PHP] Manipulating a text file

2003-02-26 Thread Richard Kurth
is the group I what to be able to change but referenced by group[0] I need to be able to add to and delete from this group and then save it to a file } -- Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To u

Re: [PHP] Mail (), BBC: recipients not receiving my Newsletter

2003-02-26 Thread Richard Baskett
Yeah I am having the same problem also.. it used to work and Im not sure when it happened.. it just doesn¹t work anymore.. Someone enlighten us? Rick When one door closes, another opens; but we often look so long and so regretfully upon the closed door that we do not see the one which has opened

[PHP] HELP!! with array's

2003-02-27 Thread Richard Kurth
5:tester3,tester3a,tester3b site4:x:506:tester4 site5:x:507:tester5,tester5a,tester5b site6:x:508:tester6 site7:x:509:tester7,tester7a,tester7b -- Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Help!! with array's Please

2003-02-27 Thread Richard Kurth
b -- Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] 404 and parsing templates

2003-02-27 Thread Richard Baskett
Ok I created an engine, an extremely simple engine that parses a template file and then according to whatever page and language it is on it calls that template. Now the problem is that, well let me give you an example: I have a page called index.php which only has an include_once function in it

Re[2]: [PHP] Help!! with array's Please

2003-02-27 Thread Richard Kurth
d here. I have read the manual for arrays RK>> and still can't figure it out. RK>> site1:x:503:tester1 RK>> site2:x:504:tester2,tester2a RK>> site3:x:505:tester3,tester3a,tester3b RK>> site4:x:506:tester4 RK>> site5:x:507:tester5,tester5a,tester5b RK&g

Re: [PHP] good database design tool?

2003-02-28 Thread Richard Whitney
PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transcend Development Producing the next phase of your internet presence. [EMAIL PROTECTED] * http://xend.net* 6

[PHP] RE: PHP, Windows and COM.

2003-02-26 Thread Richard Quadling
se of php's VARIANT() type and now to call functions that use it. Thank you VERY much!! Regards, Richard. -Original Message- From: Harald Radi [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 10:41 AM To: 'Richard Quadling' Cc: [EMAIL PROTECTED]; [EMAIL PR

[PHP] RE: PHP, Windows and COM.

2003-02-26 Thread Richard Quadling
ly want to supply What and Name, Which and Count are not valid for bookmarks. Is there a true NULL type I can send? Richard. P.S. Thanks for the OLEView pointer. -Original Message- From: Harald Radi [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 5:14 PM To: 'Richard Qu

[PHP] quick echo output

2003-03-03 Thread Richard Baskett
Ok most all programs I see they use within the html. Now I have always used the shortened version Is there a reason why I should not use this? I've never had any problems with this way of doing things, but I just don't see anyone else using that format.. Cheers! Rick "As I grow to understand

Re: [PHP]

2003-03-04 Thread Richard Baskett
for ($i = 1; $i < 6; $i++) { echo "Destination\n"; } You forgot the # sign. Cheers! Rick Happiness is not a destination. It is a method of life. - Burton Hills > From: "Beauford.2002" <[EMAIL PROTECTED]> > Date: Tue, 4 Mar 2003 17:21:20 -0500 > To: "HWG Basics" <[EMAIL PROTECTED]> > Cc: "PHP

Re: [PHP]

2003-03-04 Thread Richard Baskett
03 20:21:05 -0500 > To: "Richard Baskett" <[EMAIL PROTECTED]>, "PHP General" > <[EMAIL PROTECTED]> > Subject: Re: [PHP] > Thanks for the info, but the # is not used in this way from the information > I have read. > > . . . > Define a tar

[PHP] Getting error REG_EMPTY

2003-03-04 Thread Richard Kurth
ot;This email has already been registered."; exit;} } this is what is in the members.txt file [EMAIL PROTECTED]|Mr.|Richard|Kurth|1046828998|03/04/2003 -- Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

[PHP] remove a line from a text list

2003-03-05 Thread Richard Kurth
This script will remove a line from a text list of email address and then re-write the list. The only problem I am having is when it re-writes the list it adds a extra line between each record. How can I stop this from happening $recordsarray = file($members); $remove = "[EMAIL PROTECTED]"; $temp

Re[2]: [PHP] remove a line from a text list

2003-03-05 Thread Richard Kurth
Hello Jason, Wednesday, March 5, 2003, 12:38:39 PM, you wrote: JW> On Thursday 06 March 2003 04:18, Richard Kurth wrote: >> This script will remove a line from a text list of email address and >> then re-write the list. The only problem I am having is when it >> re-writ

Re: [PHP] language translations on php site

2003-03-05 Thread Richard Baskett
Take a look at: http://www.php.net/manual/en/reserved.variables.php and scroll down to the HTTP_ACCEPT_LANGUAGE constant. When you set your language variable within your browser, the HTTP_ACCEPT_LANGUAGE constant can be accessed by $_SERVER['HTTP_ACCEPT_LANGUAGE']. It results in a two letter code

Re[2]: [PHP] remove a line from a text list

2003-03-05 Thread Richard Kurth
Hello Chris, Don't know how I did that but it worked strange. Maybe the reason I am getting the extra line is because I am testing the script on Windows 200 and not on a good Linux box. Wednesday, March 5, 2003, 1:37:43 PM, you wrote: CW> On Wed, 5 Mar 2003, Richard Kurth wrote: >&g

[PHP] adding a comma between a list of file names

2003-03-05 Thread Richard Kurth
les .=substr($file,0,strpos($file,'.')); } } closedir($handle); -- Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] adding a comma between a list of file names

2003-03-05 Thread Richard Kurth
Hello Jonathan, Thanks I know it was something simple like that. Wednesday, March 5, 2003, 2:42:41 PM, you wrote: JP> Richard, JP> $handle = opendir($emaildir); JP> $emailes = ""; JP> while (false !== ($file = readdir($handle))) { JP> if ($file != &

Re: [PHP] no phun intended!!!

2003-03-09 Thread Richard Whitney
; >To unsubscribe, visit: http://www.php.net/unsub.php ### > ### > ### > _ ### > MSN 8 with e-mail virus protection service: 2 months FREE* ### > http://join.msn.com/?page=features/virus ### > ### ### ### ##

[PHP] while loop with mysql

2003-03-10 Thread Richard Kurth
d_email(); }}}//end of all three if statements }//end of $emails while loop } //end $members while loop -- Best regards, Richard mailto:[EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re[2]: [PHP] while loop with mysql

2003-03-10 Thread Richard Kurth
mbers table sent field with the key # RK>> $sql1="Update members set sent='$keys' where email='$logged_email'"; RK>> $result=safe_query($sql1); RK>> send_email(); RK>>

[PHP] Removing a Blank line from a text file

2003-03-10 Thread Richard Kurth
This function removes a line from a text file list. It has one problem if it removes a line from the beginning or middle of the text file list it leaves a blank line. How can I make it remove the blank line also? function remove_email($email){ global $members,$datadir,$email; $recordsarray = file

[PHP] General Information About Porting a Monolithic Perl CGI Script to PHP

2003-03-14 Thread Richard Ward
yet found a DBI equivalent for PHP. Any comments or suggestions would be greatly appreciated. Richard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Cannot execute php applications. Problems with required library mysql.so

2003-03-12 Thread Richard Sumilang
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Richard Sumilang IT Manager ExexDirect, LLC 21650 Oxnard St., Suite 2350 Woodland Hills, CA 91367 (877) 591-3252 [EMAIL PROTECTED] www.exexdirect.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP/Content Management

2003-07-07 Thread Richard Baskett
Do you realize that link does not work with the Safari browser? it just shows up blank :( Rick When one door closes, another opens; but we often look so long and so regretfully upon the closed door that we do not see the one which has opened for us. - Alexander Graham Bell > From: "Robert Samue

Re: [PHP] [ML] Are there any announcement rules for this list?(was Re: [PHP] Re: NEW SPAMMER ...)

2003-07-08 Thread Richard Baskett
Ill second that.. err third that.. I like to hear announcements also.. as long as they are PHP based of course :) +1 for me also. Rick You will never be happy if you continue to search for what happiness consists of. You will never live if you are looking for the meaning of life. - Albert Camus

[PHP] PHP forum

2003-07-08 Thread Richard Baskett
Ok some of you might not like this, others of you will know exactly what I mean, but it just reminded me so much of this forum that I am sure some of you will catch the humor in it: http://www.mac-forums.com/forums/showpost.php?postid=5736&postcount=85 Please keep your flames directed at me inste

[PHP] Problem getting phpMyAdmin to work on localhost

2003-07-14 Thread Richard White
I have a couple of problems with newish MySQL database. I am running WinXP-Pro, MySQL V 4.0.12-nt, Apache etc. I previously got this all working, but today (after a break of a couple of weeks) I can't get "phpMyAdmin-2.5.0-rc1" to work. I have configured {config.inc.php} exactly as per documenta

[PHP] Re: Problem getting phpMyAdmin to work on localhost

2003-07-15 Thread Richard White
7;] = 'PMA_pdf_pages'; $cfg['Servers'][$i]['column_info'] = 'PMA_column_info'; $cfg['Servers'][$i]['history'] = 'PMA_history'; http://127.0.0.1/ is configured in Apache to be development directory on C: (ie. C:\...\...\development) The {phpmyadmin} directory is thus C:\...\...\development\phpmyadmin Apache is working, PHP is working and MySQL is working. phpMyAdmin is working too, with the exception of this feature. On phpMyAdmin screens, I see:- "Error The additional Features for working with linked Tables have been deactivated. To find out why click here." Any ideas on the cause of the problem? PS: I get the same results running phpMyAdmin in Netscape. Thanks in advance, Richard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Problem getting phpMyAdmin to work on localhost

2003-07-15 Thread Richard Baskett
reate the symbolic link and there you have it. Now if you want to get rid of that error just set this variable: $cfg['PmaNoRelation_DisableWarning'] = TRUE; And that should take care of it! Cheers! Rick "The only way to have a friend is to be one." - Ralph Waldo Emerso

Re: [PHP] osCommerce and modifications

2003-07-18 Thread Richard Baskett
You might want to look at eShox, it's based on osCommerce, but in my opinion it's quite a lot better. Cheers! Rick "The intuitive mind is a sacred gift and the rational mind is a faithful servant. We have created a society that honors the servant and has forgotten the gift." - Albert Einstein

Re: [PHP] eShox

2003-07-18 Thread Richard Baskett
Mostly eShox you are paying for support. It's a great program and the support is unmatchable.. whenever I had questions support would email me back sometimes instantaneously, and other times.. within a couple of hours. I can get you $50 off if you would like since I work with them quite a bit for

[PHP] Software Application Engineer WANTED (PHP/MySQL Guru)

2003-07-23 Thread Richard Gabriel
mponents of an application connect to create a comprehensive solution Please send resumes to [EMAIL PROTECTED] Thanks! Richard Gabriel Director of Technology, CoreSense Inc. (518) 306-3043 x3951

[PHP] default_charset: problem

2003-07-25 Thread Richard Gennaro
cial chars, Instead, with php_value default_charset UTF-8 it displays correctly special chars but not htmlentities Any suggest? RICHARD :-D http://www.jia.it http://programmazione.risorse.com [EMAIL PROTECTED] [EMAIL PROTECTED] [EMAIL PROTECTED] ICQ: 130902854 RICHARD :-D http://programmazione.r

Re: [PHP] looking for scheduling program

2003-07-30 Thread Richard Baskett
Or just go to http://www.birthdayalarm.com/ and have them do it for you :) I regard as a mortal sin not only the lying of the senses in matters of love, but also the illusion which the senses seek to create where love is only partial. I say, I believe, that one must love with all of one's being, o

Re: [PHP] Redirect to HTTPS

2003-08-01 Thread Richard Baskett
This is how I do it: if ($_SERVER['HTTPS']!='on') { header("Location: https://mynet.com/pay.php";); exit; } "It is my ambition to say in ten sentences; what others say in a whole book." - Friedrich Nietzsche > From: [EMAIL PROTECTED] > Date: Fri, 1 Aug 2003 10:20:58 +0200 > To: [EMAIL PROTE

Re: [PHP] howto set variablevalue with link?

2003-08-01 Thread Richard Baskett
yeah you can set a variable this way: http://www.example.com/test.php?var=something This sets the variables $var equal to "something" and you can use them accordingly within your script. If you have safe mode on then you'll need to access the $var variable by using the $_GET array like so: $_GE

Re: [PHP] COUNT(*)

2003-08-01 Thread Richard Baskett
Actually that does retrieve the number of rows.. // Query $query = "SELECT COUNT(*) AS count FROM pet"; // Execute Query $result = mysql_query($query); // Get the result of query named count $count = mysql_result($result,0); echo $count." is the number of rows"; Cheers! Rick In order to seek

[PHP] FDF Library Issues

2003-08-01 Thread Richard Lynch
Please Cc: me directly, if possible. Thanks! [This got long, but a search for "Synopsis:" (two of them) should give the gist.] Originally, the machine (Linux 2.4.19-16mdk) had Mandrake 8 RPM's of PHP 4.2.3 and Apache 1.2.26 I was able to install LIBFDFTK.SO 5.0 and the .h file, symlinked to low

[PHP] payflow pro with php

2003-08-03 Thread Richard Baskett
Ok I am having some serious problems with payflow pro.. Has anybody else had the problem that when you execute the test.sh script it works fine, but when you do the exact same thing in php it gives you a failed to connect response message? If so what in the world did you do to get it to work? Th

[PHP] Re: FDF problem with IE - any experts out there?!?

2003-08-04 Thread Richard Lynch
>Karsten Dambekalns wrote: >> Hi! >> >> Sorry for the 'longish' post... I am working on a script that generates >> FDF data and sends it to the browser for display in a PDF file. > ... >> But it works only in Mozilla, MSIE starts Acrobat Reader which then pops >> up an alert window saying (transla

[PHP] Re: FDF problem with IE - any experts out there?!?

2003-08-05 Thread Richard Lynch
Oooh, and I forgot! In addition to all the other Microsuck non-compliance... IE just plain doesn't like the IDEA of a dynamic PDF file. Thus, if you use the usual no-cache headers, it will puke on you. So what you have to do is embed a random part in your URL. Continuing with our example from

[PHP] Importing file

2003-08-14 Thread Richard Baskett
When I import a file using the file() function it is screwing up any spanish accents and putting in some strange characters in their place. Is there something that I can do to remedy this? So for example something like 'é' is being turned into '-', or 'í' is being turned into '£' etc etc.. exampl

[PHP] Ezmlm Hash

2003-08-14 Thread Eyles, Richard
never used c or the like and don't fully understand what it is doing! Can anyone help please? Thank you Richard -- Richard Eyles Principal Pharmacist Computer Services Portsmouth Hospitals NHS Trust 023 9237 2923 / Ext 5283

Re: [PHP] Re: UPS Address Validation PHP Class

2003-08-14 Thread Richard Baskett
: [PHP] Re: UPS Address Validation PHP Class > > Hello, > > On 08/13/2003 06:35 PM, Richard Baskett wrote: >> Do any of you know of a PHP Class that will interact with the UPS address >> validation routine? I am completely confused when it comes to UPS and how >> the

[PHP] UPS Address Validation PHP Class

2003-08-14 Thread Richard Baskett
Do any of you know of a PHP Class that will interact with the UPS address validation routine? I am completely confused when it comes to UPS and how they integrate things.. and have been saved by someone's UPS Rate Class, but now I need an Address Validator. Please please please help! Thanks! Ri

Re: [PHP] Category and sub-category logic

2003-08-15 Thread Richard Baskett
Wouldn¹t it just be easier to do a relationship table as in Personnel emp ID parent 'Albert' 1 0 'Bert'2 1 'Chuck' 3 1 'Donna' 4 0 'Eddie' 5 4 'Fred'6 0 'Joe' 7 6 This way you know the

[PHP] cron

2003-08-15 Thread Richard Lynch
Not specific to PHP really, but it all started with a simple PHP script I was automating... I've used cron/crontab on a zillion machines, and it always worked flawlessly. Well, once I'd get the actual shell commands and permissions right anyway. But this time... The cron jobs just aren't having

Re: [PHP] is the list getting virus spammed?

2003-08-19 Thread Richard Baskett
I think you guys are bragging :) I have had over 100 easily.. about 3 or 4 every 5 minutes.. it's pretty bad. I work with a bunch of colleges and I think they are the ones getting hit the worse :( Rick I look forward to the invention of faster-than-light travel. What I'm not looking forward to

Re: [PHP] is the list getting virus spammed?

2003-08-20 Thread Richard Baskett
> I am getting these majordomo mails as well, thought it was a problem at > my end. grrr, people who use the redmond operating system deserve to be > plagued by viruses. Here here! Ill second that! "I will persist until I succeed. Always will I take another step. If that is of no avail I will tak

<    1   2   3   4   5   6   7   8   9   10   >