Re: [PHP] please reply -copy right

2002-02-19 Thread Daniel Alsén
You don´t have to register anywhere. You don´t even have to add a copyright notice. But if you do you are signalling that the content of the website is protected by copyright laws. No more complicated than that... - D - Original Message - From: "Dani" <[EMAIL PROTECTED]> To: <[EMAIL PRO

[PHP] PHP Training in NYC

2002-04-22 Thread Daniel Kushner
Hi , I am please to announce that the next PHP Training will take place on May 8th - 9th. More information may be found at http://www.websapp.com/training.php Regards, Daniel Kushner -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Training in NYC

2002-04-27 Thread Daniel Kushner
Hi Group, I would like to remind any beginner PHPers that live near (or in) New York City that the next PHP Training will take place on May 8th - 9th. More information at http://www.websapp.com/training.php Best regards, Daniel Kushner -- PHP General Mailing List (http://www.php.net/) To

[PHP] PHP Portal Server

2002-05-02 Thread Daniel Guerrier
Does anyone know of and used a PHP powed portal server? Which is the most robust and the easiest to maintain? __ Do You Yahoo!? Yahoo! Health - your guide to health and wellness http://health.yahoo.com -- PHP General Mailing List (http://www.php.n

[PHP] Php Sessions

2002-05-04 Thread Daniel Svanbäck
ame().'='.session_id()); header('Location: ../index.php?'.zOLSID); Do I have to add this to every header()? Or is there a easyier way. I have global variables = on. //Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Php Sessions

2002-05-05 Thread Daniel Svanbäck
I'm using winxp and php.. can this be the problem. I solved the problem by donwgrade to php 4.1.0.. "Austin Marshall" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Daniel SvanbäCk wrote: > > Hi > > > > I

Re: [PHP] Generating PINs

2002-05-13 Thread Daniel Tryba
-E59VB-7SX99 or similar)? Does md5() fit you needs? http://www.php.net/manual/en/function.md5.php -- Daniel Tryba -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: reindexing an array after unset()

2002-05-18 Thread Daniel Grace
s perfect, except that I don't want to take the last > element off the end. Otherwise I would definitely use it. > > Erik > $array = array_values($array) will re-index your array without the need for array_pop and array_push. -- Daniel Grace -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Apache, html, PHP and global variables

2002-05-30 Thread Daniel Grace
long time...it adds up real fast!). If the ability to raise the connection limit isn't available, you may want to use mysql_connect instead -- slightly slower, but you won't have to worry about unused connections lingering. (It's still possible to hit the limit, though, just not as l

Re: [PHP] user auth

2002-05-30 Thread Daniel Tryba
what you yourself could do is keep track of eg. the IP adress of the user and check if it doesn't change... if it does then maybe someone is trying something fishy. -- Daniel Tryba -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Speed comparison of PHP vs. PERL (not conclusive)

2002-05-31 Thread Daniel Grace
This all started in a little debate between me and a friend of mine who I think is as much a PERL zealot as I am a PHP zealot (I was briefly pondering the idea of a Win32 API extension for PHP), and the results were rather surprising -- to me, at least.. It all started when I asked him what PERL

[PHP] Re: Speed comparison of PHP vs. PERL (not conclusive)

2002-05-31 Thread Daniel Grace
ect the output made -- wasn't noticeable) and forgot to remove them when c+p'ing the source to the newsgroup. -- Daniel Grace -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Speed comparison of PHP vs. PERL (not conclusive)

2002-05-31 Thread Daniel Grace
se I pondered the idea of maybe writing a Win32 API extension for PHP) And a loop in PHP isn't exactly non-typical. I'd need more fingers and toes to count how many times I've wrote "while($row = mysql_fetch_assoc($result)) { ... }" -- Daniel Grace -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] process php script at regular intervals

2002-06-02 Thread daniel cozzolino
I want to have a php script processed on a daily (eg 9am) interval. is there some way to automate this from within the script or do i need to schedule this with an external app? has anyone had any experience with this previously? thanks Daniel -- PHP General Mailing List (http

[PHP] Return values?

2002-02-25 Thread Daniel Alsén
Hi, how do i display return values from functions? Ie i want to see whether mail() returns TRUE or FALSE. - D -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP features

2002-02-26 Thread Daniel Alsén
Hi! Which function should i turn on in the PHP installation to get rid of variables being sent in the url (if i don´t explicitly want them there of course)? - D -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Overriding session headers

2002-02-28 Thread Daniel Grace
nding my own cache-control headers with header() either merges them with the ones the session_start sends, or does absolutely nothing (verified by doing a GET /url HTTP/1.0 via telnet to port 80), regardless of whether the header occurs before or after the session_start. -- Daniel Grace P.S. The P

[PHP] URL cloaking?

2002-03-01 Thread Daniel Alsén
Hi, my webhost offers wildcard dns for subdomains. However - the subdomains only redirects from sub.domain.com to domain.com/sub. I want to cloak the url to remain sub.domain.com. Is there any easy way to do that with a php-snipplet? Regards # Daniel Alsén| www.mindbash.com # # [EMAIL

[PHP] Re: get the median from an array of integers

2002-03-01 Thread Daniel Grace
gt; As for the median value, there's a relatively easy way to do this in PHP: 1. Sort the array (sort()) 2. Count the number of elements in the array (count()) 3. Take the element that is equal to half the number of the elements (rounded to an int, which way you round doesn't matter)

Re: [PHP] Overriding session headers

2002-03-01 Thread Daniel Grace
header from being sent and I'm not being allowed to override it. Maybe in some later version we'll get the ability to either fine-tune what headers the Session handler sends, or the ability to directly modify what's being sent for headers? Pleeease? -- Daniel Grace (my original me

[PHP] Perhaps a task for regexp?

2002-03-05 Thread Daniel Reichenbach
The html newsletter contains headers from to . Now I'd like to parse through the text and get all occurences of ... and ... add a tag before each of them. How could this be done best? Would a regexp help to get all these entries? And how would I add the tag? Daniel -- PHP General Mai

RE: [PHP] finding include path

2002-03-08 Thread Daniel Kushner
ini_get('include_path') > -Original Message- > From: Nick Wilson [mailto:[EMAIL PROTECTED]] > Sent: Friday, March 08, 2002 11:06 AM > To: php-general > Subject: [PHP] finding include path > > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi > Is there an easy way to determine t

RE: [PHP] Pache .htpasswd Encryption

2002-03-12 Thread Daniel Kushner
http://www.phpclasses.org/browse.html/package/387.html > -Original Message- > From: Chris Burwell [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 11, 2002 3:46 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Pache .htpasswd Encryption > > > I am trying to make a script that adds users to a A

[PHP] mail() and qmail

2002-03-14 Thread Daniel Reichenbach
it doesn't send mails, there even are no error messages in both php log an qmail log. Anybody on the list using qmail who could help? Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] mail() and qmail

2002-03-14 Thread Daniel Reichenbach
ersion uses for sendmail_path should be visible? Would be interesting to know what parameters your php version uses. Mine uses sendmail -t -i. Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Receipts

2002-03-20 Thread Daniel Alsén
forced to deny receipts from a mailing list. # Daniel Alsén| www.mindbash.com # # [EMAIL PROTECTED] | +46 705 38 10 30 # # ICQ: 63006462 | +46 8 694 82 22 # # PGP: http://www.mindbash.com/pgp/ # -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Advice needed

2002-03-22 Thread Daniel Tryba
} } } $quant=array(1,2,3,5,10,15,20,25,50,100,300,500,600,1); $Quantity1=10; $Price1=1; $Quantity2=500; $Price2=40; $ppu=array(); for($i=0;$i 8<- Output: |1|2|3|5|10|15|20|25|50|100|300|500|600|10000 |0|0|0|0|0.1|0.1|0.1|0.1|0.1|0.1|0.1|0.08|0.08|0.08 -- Daniel Tryba PGP pub

[PHP] Passing a variable invisibly via a href?

2002-04-02 Thread Daniel Alsén
destination page. Any pointers on how i can do this? Regards # Daniel Alsén| www.mindbash.com # # [EMAIL PROTECTED] | +46 705 38 10 30 # # ICQ: 63006462 | +46 8 694 82 22 # # PGP: http://www.mindbash.com/pgp/ # -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

SV: [PHP] Passing a variable invisibly via a href?

2002-04-02 Thread Daniel Alsén
ther. Two forms? - Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

SV: SV: [PHP] Passing a variable invisibly via a href?

2002-04-02 Thread Daniel Alsén
i set the variable via a link: (or change=dec) Now - i don´t want the variable to be visible. And i would prefer if the variable didn´t get set every time someone hit reload. Or am i attacking this changing-text-size-thingy the wrong way? - Daniel -- PHP General Mailing List (http://w

[PHP] Using ob_gzhandler

2002-04-03 Thread Daniel Swarbrick
Can someone please confirm the correct place to call ob_start("ob_gzhandler") in a script? I am using sessions also, and the start of my scripts is like so: setFetchMode(DB_FETCHMODE_OBJECT); // rest of script ?> -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Using ob_gzhandler

2002-04-04 Thread Daniel Swarbrick
T5830... I would guess before any output to the browser... so nearer the top the better Andrew "Daniel Swarbrick" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Can someone please confirm the correct place to call > ob_start(&qu

[PHP] PHP Training is New York

2002-04-12 Thread Daniel Kushner
LAST DAY TO REGISTER http://websapp.com/training.php --Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Empty Delimiter error

2002-04-15 Thread Daniel Grace
our script can handle $email being empty, simply adjust your level of error-reporting or silence the warning with an @. Otherwise, fix whatever it is that's causing $email to be empty. -- Daniel Grace -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] security question

2001-10-17 Thread Daniel Goldin
bject: Re: [PHP] security question On Wednesday 17 October 2001 19:14, Daniel Goldin wrote: > But I need to protect the files themselves. Is > their a way to protect the files without adding another level of > authorization when someone does access them from the browser? Move these

[PHP] Re: Web portals

2001-10-19 Thread Daniel Masur
would intresst me too, cose i want to biuld my own portal <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> schrieb im Newsbeitrag 20011018124135.17694.1001.qmail@server0021">news:20011018124135.17694.1001.qmail@server0021... > > Hi ! > > I am looking for an efficient web portal, sutable for medium/big co

[PHP] Date->TimeStamp

2001-10-19 Thread Daniel Harik
Hello guys I store date in my dbase in folliwing format 2001-08-27 22:24:07, how can i convert this to timestamp and do manipulation Thank You very muc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTE

[PHP] Re:Date->TimeStamp

2001-10-19 Thread Daniel Harik
I've tried this code: $timea = explode(" ",$timepostsed); $timea1 = explode("-",$timea[0]); $timea2 = explode(":",$timea[1]); $timestamp = mktime($timea2[0],$timea2[1],$timea2[2],$timea1[1],$timea1[2],$timea1[0]); But it return "-1" -- PHP General Mailing List (http://www.php.net/) To unsubs

Re: [PHP] Re: Re:Date->TimeStamp

2001-10-20 Thread Daniel Harik
Thank You -- 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] php.ini

2001-10-21 Thread Daniel Harik
pane teda c:/php voi c:/windows -- 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] Loading message

2001-10-25 Thread Daniel Alsén
Hi, is there a easy way in php to display text like "Loading..." while elements on a page is being loaded from the server? Regards # Daniel Alsén| www.mindbash.com # # [EMAIL PROTECTED] | +46 704 86 14 92 # # ICQ: 63006462 | # -- PHP General Mailing

RE: [PHP] Re: Loading message

2001-10-25 Thread Daniel Alsén
some sort of loading message while a database search is active. - Daniel > -Original Message- > From: _lallous [mailto:[EMAIL PROTECTED]] > Sent: den 25 oktober 2001 13:14 > To: [EMAIL PROTECTED] > Subject: [PHP] Re: Loading message > > > the page won't eve

RE: [PHP] Re: Loading message

2001-10-25 Thread Daniel Alsén
includes (heavy because it gets data from another website). So, in effect, the page loads and displays all content, make pauses when hitting heavy includes, and then continues. - Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional command

RE: [PHP] Re: Loading message

2001-10-25 Thread Daniel Alsén
sed/parsed. Actually i know why parts of the page is loading slow. I have a included php file that gathers data from another website. While that script is going off to the other website the main file make a pause parsing. - Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

RE: [PHP] Re: Loading message

2001-10-25 Thread Daniel Alsén
Could i have a hint of what you have done Jon? - Daniel > Totally incorrect. I have a page on our intranet that checks whois > information against about 10 whois servers. Right at the top of > the page it > says "Checking". As soon as a response comes back from a >

[PHP] Replace text

2001-10-27 Thread Daniel Harik
Hello guys function replace_text_smiley(){ global $comment; // To add a relation between a text smiley a an image smiley do this: // $faces["text smiley here"] = "img tag to image smile here"; $faces[":)"] = ""; $faces[":P"] = ""; $faces[":D"] = ""; $faces[":("] = ""; $faces[";)"] = "";

[PHP] Replace text

2001-10-27 Thread Daniel Harik
Hello guys function replace_text_smiley(){ global $comment; // To add a relation between a text smiley a an image smiley do this: // $faces["text smiley here"] = "img tag to image smile here"; $faces[":)"] = ""; $faces[":P"] = ""; $faces[":D"] = ""; $faces[":("] = ""; $faces[";)"] = "";

[PHP] Excel to MySQL

2001-10-27 Thread Daniel Harik
Hello guys Thank You very much for your previous replies, could u help me with 1 more thing? You see i have huge(for me) 100 000 record access table, i wanted to convert it to mysql, i thought of making php convertor that uses odbc and mysql, but maybe there is faster way? And other thought was

Re: [PHP] Excel to MySQL

2001-10-27 Thread Daniel Harik
I used Jeff's method http://adsl20066.estpak.ee/emt here is it working live Thank You Jeff so much -- 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: [EMAI

Re: [PHP] Excel to MySQL

2001-10-27 Thread Daniel Harik
Guys getting more serious here now, 3 500 000 records, foxPro i'll try Jeff's method -- 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] GD GIF or PNG Detect Part 2

2001-10-29 Thread Daniel Reichenbach
re > testing for GIF > or PNG support? How about using something like this? if (function_exists('ImageTypes')) { // GD functions are available } else { // GD functions not available } http://www.php.net/manual/en/function.function-exists.php is the place in the manual :)

[PHP] Different fonts in PHP generated images

2001-10-30 Thread Daniel BI
Hi all! Does anyone know how to put a text in other font than latin ones (Chinese, for example), on a PHP generated image? Do I need to install some new fonts? A different freetype library? Any clue greatly appreciated :) Daniel BI -- PHP General Mailing List (http://www.php.net/) To

[PHP] spliting results into 2 colomns

2001-10-31 Thread Daniel Harik
Hello Guys I have following code, sorry it's pretty big for posting, i want to split the output into 2 colomns, been trying almost all still can't get it working here the link, with this code online http://funzz.cjb.net/itfaq/kbase.php -- "; $numOfRows = mysql_num

[PHP] Asian fonts

2001-10-31 Thread Daniel BI
Hi all! Any idea how to use (install) asian fonts on an english version of RH? I need them in the gd library, to generate an image with chinese/japanese text. any clue greatly appreciated! Daniel BI -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re[2]: [PHP] spliting results into 2 colomns

2001-10-31 Thread Daniel Harik
WoW, thank you very much DL Neil, this is the best reply i've ever got during my time on the web (since 1994). -- 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-mai

Re: [PHP] spliting results into 2 colomns

2001-10-31 Thread Daniel Harik
I't just came into my mind, if 1 simple split that arrey in to 2 arrays, it would be much simplier and wouldn't need second loop, i just wanted to know how can i split 1 array in 2 arrays Thank You -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] split array in 2 halfs

2001-10-31 Thread Daniel Harik
Good evening I was wondering how can I split, array that has 60 elements in it, into 2 arrays with 30 elements each? Thank You very much and have a good night :-) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMA

Re[2]: [PHP] split array in 2 halfs

2001-10-31 Thread Daniel Harik
Want to split it in half 1 Big array: 1 2 3 4 5 6 Want to make 1 Small array: 1 2 3 2 Small array: 4 5 6 Thank You -- 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 administr

[PHP] Problem with fopen() when php is in safe_mode

2001-11-01 Thread Daniel Bergqvist
Warning: Unable to access testar.txt in /home/d5051/public_html/mail.php on line 17 Warning: fopen("testar.txt","r") - No such file or directory in /home/d5051/public_html/mail.php on line 17 I know that the path to the file is correct and the file is set to -rwxrwxrwx. Also my

[PHP] Hotel booking/managment system?

2001-11-02 Thread Daniel Alsén
Hi, does anyone have the script that is supposed to be stored at http://hrs.rics.ru/? Or does anyone know of any other hotel booking system or a similar script in php? I am mainly interested in the concept of the system. Database relations and buildup. Regards # Daniel Alsén

[PHP] Redirect use back after execution

2001-11-02 Thread Daniel Harik
Hello I'm making vbulletin foru hack, that allows to rate members my code is just 50 lines, I set link to my script from vBulletin page, and after it has been clicked code executes, and then i want to return user to the page where he clicked the link leading to my code, i was wondering how can th

RE: [PHP] Deleting Array elements

2001-11-02 Thread Daniel Kushner
Hi, Try out this class: http://www.websapp.com/classes/LineRemover/ --Daniel > -Original Message- > From: HEW Staff [mailto:[EMAIL PROTECTED]] > Sent: Friday, November 02, 2001 9:56 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Deleting Array elements > > > I

[PHP] Passing many valaues to function

2001-11-03 Thread Daniel Harik
Hello I need to pass about 15 values to function, what would be best way of doing it? Thank you very much -- 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:

Re[2]: [PHP] Passing many valaues to function

2001-11-03 Thread Daniel Harik
I have following code vallidateForm($HTTP_POST_VARS); }else{ $user->displayForm(); } Why i try to run it i get error Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' in c:\program files\apache group\apache\htdocs\cms\member.php on line 235 Thank you very muc

[PHP] Trouble with PNGs

2001-11-03 Thread Daniel Reichenbach
Hy, I'm using PHP 4.0.6 with GD-2.0.1 and Freetype 2 compiled in. After playing a while with gd, I found that i can generate blank images with TTF text on it and can put text with imagestring on a png, but writing with ImageTTFText fails. Any idea? Daniel -- PHP General Mailing List

RE: [PHP] Trouble with PNGs

2001-11-03 Thread Daniel Reichenbach
ing in here? Can anyone please help me? This makes me go crazy. Daniel -- 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] Running 1 more script inside

2001-11-03 Thread Daniel Harik
Hello Thank you for your prevoius replies I have 1 main php and 1 chil, i was wondreing how can i execute that child php file from parent, i just don't know how to do it with eval() function Thank You very much -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] Re: Running 1 more script inside

2001-11-03 Thread Daniel Harik
Yes i tried that, but problem, is that child file is 1 more class, if i include it i get error: Fatal error: Cannot redeclare class blocks in c:\program files\apache group\apache\htdocs\cms\blocks.php on line 3 Thank You Have a nice day -- PHP General Mailing List (http://www.php.net/) To

[PHP] Access $HTTP_POST_VARS from class member fucntion

2001-11-04 Thread Daniel Harik
Hello I have a class called Member, it has member function called vallidateForm(), i try to pass it a $HTTP_POST_VARS array it looks like this: clas Member{ var $HTTP_POST_VARS; function vallidateForm ($HTTP_POST_VARS){ echo $HTTP_POST_VARS['frmUsername']; } } $user = new Member;

[PHP] User authentication?

2001-11-04 Thread Daniel Alsén
was dead links). Regards # Daniel Alsén| www.mindbash.com # # [EMAIL PROTECTED] | +46 704 86 14 92 # # ICQ: 63006462 | # -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

RE: [PHP] CF convert question..

2001-11-08 Thread Daniel Reichenbach
et/header a try. Daniel -- 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] Re: apache + ftp!

2001-11-12 Thread Daniel Masur
on win32 i like g6ftp server "Benjamin" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hey group! > > i have apache installed on an win2000 machine and now i need an good and > stable ftp server! which one does i take! > > thank you, ben > > > -- PHP

Re: [PHP] apache + ftp!

2001-11-12 Thread Daniel Masur
never had it runnin, but i didnt heard bout hacking g6ftp. "Olexandr Vynnychenko" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello Benjamin, > > Monday, November 12, 2001, 12:00:22 PM, you wrote: > > B> hey group! > > B> i have apache installed on an

RE: [PHP] Url Length Limitations?

2001-11-12 Thread Daniel Kushner
You can try this class for POSTing: http://phpclasses.upperdesign.com/browse.html/package/375 --Daniel > -Original Message- > From: Valentin V. Petruchek [mailto:[EMAIL PROTECTED]] > Sent: Monday, November 12, 2001 7:05 AM > To: [EMAIL PROTECTED] > Subject: [

[PHP] getrusage() not supported

2001-11-13 Thread Daniel Berwig
I'm trying to run a script in my server (IIS 5) that uses the function getrusage(), but it returns the following warning: Warning: getrusage() is not supported in this PHP build in file_name.php on line 377 Does anyone know how I can solve this problem? Thanks in advance. -- PHP General Ma

Re: [PHP] can php detect whether an email address is a valid one?

2001-11-13 Thread Daniel Masur
get the mx record: function checkmail ($mailtocheck) { if (eregi("^[_\.0-9a-z-]+@([0-9a-z][-0-9a-z\.]+)\.([a-z]{2,3}$)", $mailtocheck, $check)) { if (getmxrr($check[1].".".$check[2],$temp)) { return true; } return false; // kein mx gefunden } else { return false; // syntax fehler } } "Martin T

[PHP] Re: Login/Security Problem

2001-11-14 Thread Daniel Masur
set a cookie, and delete it with a logout button or when the user leaves your domain "Joe Van Meer" <[EMAIL PROTECTED]> schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi there. I'm new to php and would like some insight on securing a website. > Upon successful login to my

Re: [PHP] Re: Login/Security Problem

2001-11-14 Thread Daniel Masur
; Stefan Rusterholz > Zürichbergstrasse 17 > 8032 Zürich > -- > T. +41 1 253 19 55 > F. +41 1 253 19 56 > W3 www.interaktion.ch > -- > > - Original Message - > From: "Daniel Masur" &l

RE: [PHP] fsockopen - whats the syntax of POST?

2001-11-15 Thread Daniel Kushner
Hi Stefan, Maybe this HTTPPost class will help you. http://phpclasses.upperdesign.com/browse.html/package/375 --Daniel > -Original Message- > From: Stefan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 15, 2001 8:53 AM > To: PHP > Subject: [PHP] fsockopen - what

[PHP] Session problem

2001-11-16 Thread Daniel Alsén
there only seems to be functions to unset or unregister the actual data inside the session - not the id itself. Any ideas? Regards # Daniel Alsén| www.mindbash.com # # [EMAIL PROTECTED] | +46 704 86 14 92 # # ICQ: 63006462 | # -- PHP General Mailing List (http

RE: [PHP] Session problem

2001-11-16 Thread Daniel Alsén
sion_start(); - Daniel > -Original Message- > From: R'twick Niceorgaw [mailto:[EMAIL PROTECTED]] > Sent: den 16 november 2001 15:40 > To: Daniel Alsén > Subject: Re: [PHP] Session problem > > > I think you can set a new session id using session_start() > so if you ne

[PHP] Loading a dll

2001-11-16 Thread Daniel Berwig
Does anyone know if it is possible to load a dll at runtime that is not in the extensions_dir configured in the php.ini? And if it is possible, how can I do it? Thanks in advance. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

[PHP] Re: Loading a dll

2001-11-16 Thread Daniel Berwig
The problem is that the php tries to load the dll from the extension_dir. Is there a way to make it load from anywhere else? "Henrik Hansen" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > [EMAIL PROTECTED] (Daniel Berwig) wrote:

[PHP] Re: Loading a dll

2001-11-16 Thread Daniel Berwig
It doesn't load the dll, when specifying the path (relative path neither absolute path). Any solution? Daniel Berwig "Henrik Hansen" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > [EMAIL PROTECTED] (Daniel Berwig) wrote

[PHP] POST files with PHP

2001-11-19 Thread Daniel Reichenbach
Hy, I'm trying to post image files to a php script with another php script. Don't ask why, it's a crazy project :) Now the file is around 28000 bytes but the post receiver only gets around 300 bytes. Has anybody experienced this behaviour? I use the following script: --- snap --- http://www.ser

[PHP] Re: Multiple Entry SELECT and JavaScript interaction

2001-11-20 Thread Daniel Berwig
You can't use brackets in this case. The Javascript won't reconize the name of the form element. Try using another caracter that can be reconized, like underscore. "Sean Dougherty" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a curious problem th

[PHP] Re: Multiple Entry SELECT and JavaScript interaction

2001-11-20 Thread Daniel Berwig
I almost forgot that... you can refer to the form element by the objects array, like this: document.form[0].elements[1].value "Sean Dougherty" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have a curious problem that I don't have a clue how to solve t

[PHP] Check contents of variable

2001-11-20 Thread Daniel Alsén
ter i determined if there is a http:// in the variable or not i guess i just have to $url = "http://"; + $url; (?)... Regards # Daniel Alsén| www.mindbash.com # # [EMAIL PROTECTED] | +46 704 86 14 92 # # ICQ: 63006462 | # -- PHP General Mailing List (http://w

RE: [PHP] Check contents of variable

2001-11-20 Thread Daniel Alsén
to read until the variable is finished? If i set it to 7 (as above) it stops reading after 7 characters? - Daniel -- 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] Re: auto form submit

2001-11-21 Thread Daniel Berwig
A way to do it is puting a javascript like this at the end of the page: where form1 is the form name you have in the page. When the page is loaded, it will then submit the form. "Wm" <[EMAIL PROTECTED]> escreveu na mensagem [EMAIL PROTECTED]">news:[EMAIL P

[PHP] Redirect upon execution of script...

2001-11-25 Thread Daniel Alsén
- what do i do? Regards # Daniel Alsén| www.mindbash.com # # [EMAIL PROTECTED] | +46 704 86 14 92 # # ICQ: 63006462 | # -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact

RE: [PHP] Redirect upon execution of script...

2001-11-25 Thread Daniel Alsén
is at the top of the page (wich is the only place i can put it) and will never know if $done is set or not below. - Daniel -- 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] Redirect upon execution of script...

2001-11-25 Thread Daniel Alsén
-statements, the header will never know when to be sent. Is there a way of calling a headerfunction in the top of the page? - Daniel > -Original Message- > From: Christian Dechery [mailto:[EMAIL PROTECTED]] > Sent: den 25 november 2001 18:41 > To: Daniel Alsén; PHP; Mi

RE: [PHP] Redirect upon execution of script...

2001-11-25 Thread Daniel Alsén
Thanks for all the help guys! I am sure i will solve this when i have a go at it again :) - Daniel -- 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

[PHP] Classes and functions

2001-11-28 Thread Daniel Reichenbach
Hy, I'm writing a class for POP3 access and I want some of the internal functions to be private, like the mime decoding stuff. Is there any way to do this? I found nothing in the docs :( Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

[PHP] SMS

2001-11-30 Thread Daniel Berwig
Does anyone know how could I send data from php through SMS to a cel phone? I simply can't find info about that. Thanks in advance, Daniel Berwig. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

[PHP] Strange problem...

2001-11-30 Thread Daniel Alsén
user_birthdate, user_city, user_mail, user_icq, user_msn, user_www, user_login, user_password) "; $query .= " values('$user_name', '$user_birthdate', '$user_city', '$user_mail', '$user_icq', '$user_msn', '$user_www', '

RE: [PHP] Strange problem...

2001-11-30 Thread Daniel Alsén
Thanks guys... I guess it´s too late here now .) It fixed itself when i altered the field type to varchar. Although - i don´t really get why it can´t store the vlaue i am sendding it the field is of integer type. - Daniel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

RE: [PHP] Strange problem...

2001-11-30 Thread Daniel Alsén
> You should really be storing your dates as datetime so you can take > advantage of the date sorting functions. But then you'd need to use > date() to format the string into -mm-dd format. Thanks Jim. but how would i actually do that? I have studied the date() function in the manual - but c

[PHP] PHP & credit validation

2001-12-01 Thread Daniel Guerrier
What credit service(s) can intergrate with PHP __ Do You Yahoo!? Buy the perfect holiday gifts at Yahoo! Shopping. http://shopping.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

<    3   4   5   6   7   8   9   10   11   12   >