Re: [PHP] Hard disk number

2003-07-27 Thread Adrian
> Can we know clients' hard disk number with a phpscript. If yes what is the > code? of course no, because php is running on the server ;) ---- -- Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.de -- PHP General M

Re: [PHP] Your E-Book

2003-07-27 Thread Adrian
ur e-mail > address with the word REMOVE in the subject line. This e-mail must be from or > contain the address you wish to have removed. -- Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.de -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Possible My Website was hacked... with PHP... please tell me what this is???

2003-07-30 Thread Adrian
everyone can execute shell commands via system(); on your server. -> delete the script ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] System() works on /usr/sbin commands

2003-07-30 Thread Adrian
usr/sbin. why is it so. > __ > Do you Yahoo!? > Yahoo! SiteBuilder - Free, easy-to-use web site design software > http://sitebuilder.yahoo.com ---- -- Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.

Re: [PHP] eval

2003-07-31 Thread Adrian
PHP-Code: eval('?>'.$string) Vars: eval('$string="'.str_replace('"','\\"',$string).'";'); > Is it possible to put PHP code in eval ? > Or just vars ? > $string = 'The result of &g

Re: [PHP] chown / chgrp of a http owned file after upload

2003-08-10 Thread Adrian
you could setup a cronjob running as root which chowns the files. or maybe you can so something with sudo -- Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.de -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] suggestion on php-editor?

2003-08-14 Thread Adrian
the tswebeditor ist not bad: http://194.112.147.2/tswebeditor/index/index/en -- Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.de -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Image with graduated fill using PHP

2003-08-14 Thread Adrian
Hi all! Is it possible to have PHP creates an image that graduates 1 color to another, such as create and images 100 pixels wide and in height which fades red to green top to bottom? Any help or suggestions would be really helpful. Thanks Adrian [EMAIL PROTECTED]

[PHP] Graduated fills using PHP Images

2003-08-15 Thread Adrian
Hi all! Is it possible to have PHP creates an image that graduates 1 color to another, such as create and images 100 pixels wide and in height which fades red to green top to bottom? Any help or suggestions would be really helpful. Thanks Adrian [EMAIL PROTECTED]

Re: [PHP] weird output on my Apache2, PHP 4.2.3 Win2k box...

2003-08-26 Thread Adrian
(new Object()); > } > window.open = SymWinOpen; //-->> > > -- Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.de -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: interact with .htaccess

2003-06-15 Thread Adrian
gt; username/password box? ---- -- Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.de -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] opening msword files outside the browser

2003-06-15 Thread Adrian
you could try header('Content-Disposition: inline; filename=test.doc'); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] opening msword files outside the browser

2003-06-15 Thread Adrian
oops, i thougt you wanted it opening in the browser. i don't think there is a way to open it directly outside the browser, because if this would be possible someone could do so with a virus .exe, too. > .. but this is opening word document inside the web browser which is not > acceptable in my cas

Re: [PHP] highlight_file() in XHTML Strict?

2003-06-24 Thread Adrian
try this: ob_start(); $oldlevel=error_reporting(0); highlight_file($file); error_reporting($oldlevel); $buffer = ob_get_contents(); ob_end_clean(); $buffer = str_replace("", "", $buffer); $buffer = str_replace("", "", $buffer); $buffer = preg_replace("//i","",str_replace

Re: [PHP] fwrite() question

2003-07-01 Thread Adrian
> $success = fwrite( $fp, "$POST_['news']" ); > which looks ok to me. When I take out the " " around $POST_['news'] it > doesn't generate an error, but then it doesn't write anything to news.txt. > news.txt is owned by no

Re: [PHP] Pulling variables from a URL

2003-10-14 Thread Adrian
lol variables in quotes - especialli when there is only the variable are really ugly. you should use $_GET[$username]... > Use double quotes: > $_GET["$username"]; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] addslashes() vs. magic_quotes_gpc

2003-10-19 Thread Adrian
it might be more efficient. > -Rasmus - Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.de -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] using existing mysql connection in a php extension

2003-10-31 Thread Adrian
conn); ? because if i have to connect to the mysql server again from my extension, i'll lose the performance-improvement gained from the faster C++-code. -- Adrian mailto:[EMAIL PROTECTED] www: http://www.planetcoding.net www: http://www.webskyline.de -- PHP General Mailing List (htt

Re: [PHP] Hacker IP and Script

2004-09-26 Thread Adrian
I would remove bad scripts like *Nuke. Their code just sucks and has really lots of bugs. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] convert video files to FLV

2009-04-08 Thread Adrian
Don't waste CPU power of shared servers for video recoding. If you need that, get a dedicated server without other customers who would probably be affected by you using lots of cpu power. Besides that, if you cannot install own (compiled) software on it, you'd have to use a pure php solution which

Re: [PHP] Delete File With Any File Extension

2010-06-15 Thread Adrian
Use glob() to get a list of matching afiles nd then unlink() them separately. > I need to delete a file with any file extension where i know the > name of the file, is it possible to use regular expressions with the unlink > function? -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] Newbie question

2005-02-18 Thread Adrian
error_reporting(E_ALL); Then you will get a notice when you try to read a variable which doesn't exist. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Adding Loop / If support to a simple template engine

2005-04-06 Thread Adrian
Just make your template engine compile templates to "native" php code. i.e. write a parser which replaces {if $foo}{$var}{/if} with templateVars['var'];?> To check if the template must be recompiled, just compare filemtimes. The assign function could be look like this then: = function assign($

Re: [PHP] Variables Help

2004-05-13 Thread Adrian
$GLOBALS -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] umm i am confused...

2004-06-19 Thread Adrian
action="module/personal/delete.php">delete); replace this with action="module/personal/delete.php">delete; and remove the ; after } - it's ugly and useless ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] no newline after "?>" in the resulting HTML

2006-03-18 Thread Adrian
Is there a way to circumvent this? My template engine compiles templates to PHP files and this "feature" makes the output html code look awful sometimes. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] microsoft PHP ?

2006-04-01 Thread Adrian
Did you even look at the calendar which date we have today? Correct, April 1st... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to get incoming emails captured by PHP ?

2006-05-10 Thread Adrian
to my PHP is correct) And the script it calls (email.php) the code is: #!/usr/bin/php Adrian

RE: [PHP] How to get incoming emails captured by PHP ?

2006-05-10 Thread Adrian
3.0 unknown mailer error 255 -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 10, 2006 10:51 AM To: Adrian Cc: php-general@lists.php.net Subject: Re: [PHP] How to get incoming emails captured by PHP ? Adrian wrote: >I have my aliases file set up with the li

RE: [PHP] How to get incoming emails captured by PHP ?

2006-05-10 Thread Adrian
THANK YOU! That did it, its now working, thank you for your help. -Original Message- From: Stut [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 10, 2006 11:03 AM To: Adrian Cc: php-general@lists.php.net Subject: Re: [PHP] How to get incoming emails captured by PHP ? Adrian wrote

[PHP] Re: How to get incoming emails captured by PHP ?

2006-05-10 Thread Adrian
Hi John Thank you, I have just got it working now, will look into the different ways you suggested. Adrian wrote: > Hi All > > > > I have been trying to have PHP capture incoming emails sent to a specific > email account and have not been able to achieve this, I have s

Re: [PHP] Embedding PHP 5 in a C application

2006-05-24 Thread Adrian
I think you can use the 'embed' SAPI for that. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Global Vars

2004-03-04 Thread Adrian
use $_POST['name_of_your_form_field'] or $_GET['name_of_your_form_field'] or $_REQUEST['name_of_your_form_field'] $_REQUEST contains $_GET, $_POST and $_COOKIE for server vars there is $_SERVER and $_ENV for environment vars $_SESSION is for session vars -- PHP General Mailing List (http://www.p

Re: [PHP] Calling a C program from php

2004-11-11 Thread Adrian
You must write a PHP extension which calls the function. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Text Parser

2004-11-24 Thread Adrian
$string = str_replace(' ', ',', $string); -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Only variables can be passed by reference - Preg_match Fatal error

2005-01-16 Thread Adrian
check your preg_match() call... things like "$pattern" and "$msg" are the spawn of satan btw. there is ABSOLUTELY NO REASON to put variables in quotation marks except that php has to parse the string which is slower than php just seeing the variable. and when a functions expects a reference, "$var

Re: [PHP] PHP in MS-DOS

2005-01-17 Thread Adrian
DOS = 16bit but I guess, PHP ist for 32+ bit ;) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Handling of lengthy server operation in php

2006-02-18 Thread Adrian
I would prefer to do everything on the server instead of using js for example in the browser. Any help would be really appreciated. Thanks, Adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] mysql

2002-11-25 Thread Adrian Partenie
Hello, 1.How many tables can be created inside a database? There is a maximum number? 2.Is it possible to erase a table? Thanks, Adrian

[PHP] calling a php function

2002-11-26 Thread Adrian Partenie
Hello, Can I call a php function using forms in the same way as I do for a javascript function? (in the same page, not with php_self). . Thanks, Adrian

[PHP] mysql, php, checkbox

2002-11-28 Thread Adrian Partenie
;]}"; echo "{$row['close']}"; } echo ""; Any sugestions if i want to use forms, something like Thanks, Adrian

Re: [PHP] mysql, php, checkbox

2002-12-03 Thread Adrian Partenie
wrong? echo ""; echo ""; /* Connecting, selecting database */ $link = mysql_connect("localhost", "root", "adrian") or die("Could not connect"); print "Connected successfull

Re: [PHP] mysql, php, checkbox

2002-12-05 Thread Adrian Partenie
Indeed, now it works, I put the form tag by mistake... Thanks, Adrian - Original Message - From: "rija" <[EMAIL PROTECTED]> To: "Adrian Partenie" <[EMAIL PROTECTED]> Sent: Tuesday, December 03, 2002 11:30 PM Subject: Re: [PHP] mysql, php, checkbox &g

RE: [PHP] Protect Access to a Directory

2003-02-05 Thread Adrian Portsmouth
Try using htaccess authentication instead? -Ade www.phpscriptsearch.com -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED]] Sent: 05 February 2003 07:06 To: [EMAIL PROTECTED] Subject: Re: [PHP] Protect Access to a Directory On Wednesday 05 February 2003 04:06, Pushpinder Sin

[PHP] PHP 5

2003-02-17 Thread Adrian Portsmouth
Hi, I have been checking out the books on Amazon.com and it seems there is a PHP5 book in the works due to be released on March the 4th. Does anyone know where I can find out information about this new release of PHP, what changes there are etc? TIA Adrian www.phpscriptsearch.com -- PHP

[PHP] crypt() MD5 problem on PHP 4.2.3

2003-02-24 Thread Adrian Ciutureanu
hi all, ' . 'CRYPT_STD_DES ' . CRYPT_STD_DES . "\n" . 'CRYPT_EXT_DES ' . CRYPT_EXT_DES . "\n" . 'CRYPT_MD5 ' . CRYPT_MD5 . "\n" . 'CRYPT_BLOWFISH ' . CRYPT_BLOWFISH . ''; echo crypt('clear_pass', '$1$salt1234$'); ?> // outputs CRYPT_STD_DES 1 CRYPT_EXT_DES 0 CRYPT_MD5 1 CR

RE: [PHP] FormatDateTime in PHP

2003-02-25 Thread Adrian Portsmouth
No don't use the PHP date function, MySQL has an inbuilt function exactly for this. See DATE_FORMAT http://www.mysql.com/doc/en/Date_and_time_functions.html HTH Adrian www.phpscriptsearch.com -Original Message- From: Chris Hayes [mailto:[EMAIL PROTECTED] Sent: 25 February 2003

RE: [PHP] Where to publish extension?

2003-03-02 Thread Adrian Portsmouth
trying to contact various people within the PHP group without any success at all. HTH Adrian www.phpscriptsearch.com -Original Message- From: Niels Andersen [mailto:[EMAIL PROTECTED] Sent: 02 March 2003 13:31 To: [EMAIL PROTECTED] Subject: [PHP] Where to publish extension? Hello! I have

[PHP] Re: fopen/fgets

2003-03-06 Thread Adrian Ciutureanu
you close the input file in while loop ( fclose($fp); ) "Bryan Koschmann - Gkt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Can someone give me a hand here? I am really lost as to what is going on. > I have a file that looks like this > > user1,Store 1 - ABC street > user2,Store

RE: [PHP] javascript

2003-03-07 Thread Adrian Portsmouth
Yes until a user comes along with JS disabled. Ade www.phpscriptsearch.com -Original Message- From: Niklas Lampén [mailto:[EMAIL PROTECTED] Sent: 07 March 2003 14:04 To: 'Php-General' Subject: RE: [PHP] javascript Advantage is obvious! If there is a field user didn't fill up, you can

[PHP] Array syntax not covered in documentation

2003-03-12 Thread adrian porter
", "$0")[""])', $u); but that isn't syntactically correct. I know that this is possible to remedy using a user function but I do this kind of thing very often (grab the contents of an array value in one line of code) and want to be able to do it without splitt

RE: [PHP] PHP, server load and optimize

2003-07-14 Thread Adrian Teasdale
_mmc.htm Hope this helps Adrian sourceguardian.com > -Original Message- > From: Jon Shoberg [mailto:[EMAIL PROTECTED] > Sent: 14 July 2003 14:23 > To: [EMAIL PROTECTED] > Subject: [PHP] PHP, server load and optimize > > > > Is there a way to execute a few

[PHP] Automatically creating an image of another website

2003-07-14 Thread Adrian Teasdale
I would like to be able to point PHP to a URL and for it to create an "image" (like a screenshot) of that website. We are putting together a "useful links" section for a client and to have this facility would be great. Anyone done this sort of thing before? Any ideas would be very useful Thanks

RE: [PHP] Automatically creating an image of another website

2003-07-14 Thread Adrian Teasdale
re info !!! > > Regards, > Hamid Hossain > > Original Message Follows > From: "Adrian Teasdale" <[EMAIL PROTECTED]> > Reply-To: <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Subject: [PHP] Automatically creating an image of another w

RE: [PHP] Automatically creating an image of another website

2003-07-14 Thread Adrian Teasdale
OK, thanks for this suggestion Jason. I'll try it and see and then see if I can find any alternative Best regards Adrian > -Original Message- > From: Jason Wong [mailto:[EMAIL PROTECTED] > Sent: 14 July 2003 20:34 > To: [EMAIL PROTECTED] > Subject: Re: [PHP] Autom

RE: [PHP] zend optimizer for 4.3.2

2003-07-17 Thread Adrian Teasdale
I might be wrong (it's been known in the past!) but I think that theirs supports 4.3.x Best regards Adrian sourceguardian.com > -Original Message- > From: Michael Rubin [mailto:[EMAIL PROTECTED] > Sent: 17 July 2003 10:30 > To: [EMAIL PROTECTED] > Subject: [PHP] zend

RE: [PHP] can't restart session

2003-07-21 Thread Adrian Portsmouth
In order to use the set_cookie method to kill a session_id you need to specify the name of the session, you have used 'user_info' but nowhere in your code do you specify the session_name("user_info") as the sessions name. HTH Ade -Original Message- From: Chris W. Parker [mailto:[EMAIL PRO

RE: [PHP] can't restart session

2003-07-22 Thread Adrian Portsmouth
Chris, As I said, you are not calling your session user_info, the only way to name a session is to use session_name() BEFORE session_start() if you are not using a session_name call then change your setcookie call to the following and this should kill it for you: setcookie(session_name(),"","","/

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

2003-07-23 Thread Adrian Teasdale
to do. I know that this isn't the answer that you were expecting, but it's the approach that I would take Adrian sourceguardian.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Which templates to use??

2003-07-27 Thread Adrian Teasdale
Adrian sourceguardian.com > -Original Message- > From: Binay Agarwal [mailto:[EMAIL PROTECTED] > Sent: 26 July 2003 01:04 > To: [EMAIL PROTECTED] > Subject: [PHP] Which templates to use?? > > > Hi all! > > As a php developer i need to know how can i

RE: [PHP] Re: Opinions on Micro$oft .NET

2003-08-01 Thread Adrian Teasdale
I'd just like to say that I've found this discussion to be very interesting and enlightning. It also makes a change to see people not "microsoft bashing" but taking an objective view on everything. We keep getting more and more requests to develop products for .net because our clients want softwa

[PHP] Mod Rewrite & Session IDs

2003-03-18 Thread Adrian Portsmouth
Hi everyone, I am currently installing mod-rewrite to change all of my URL's from: www.domain.com/category.php?ID=1 To www.domain.com/category_name.html So that they are more search engine friendly. However one problem I face is that I cannot think of any way to write the session ID which woul

RE: [PHP] Banner ad solution?

2003-03-21 Thread Adrian Portsmouth
Hi Mike, Try my web site www.phpscriptsearch.com there are a couple of Banner Management utilities under the Ad Management Category. HTH Ade -Original Message- From: MIKE YRABEDRA [mailto:[EMAIL PROTECTED] Sent: 20 March 2003 17:00 To: PHP List Subject: [PHP] Banner ad solution? Can

RE: [PHP] Select email addresses from MySQL

2003-03-21 Thread Adrian Portsmouth
Hi Tim, I did something similar recently but I had a bit more info stored than just an e-mail address, so I set-up a search system for the client whereby he could e-mail all of the people in the search result set. Just a thought that might give you some ideas for your situation. HTH Ade www.phps

[PHP] Files uploads problem

2003-03-31 Thread Adrian Greeman
e and print it to be sure basics work $TestPrint="Print this out then..\n"; echo($TestPrint); ?> Is there something I've missed in the script. Or perhaps Apache 2 is the problem? Thanks Regards Adrian Greeman Telephone +44 20 8672 9661 Mobile +44 780 329 7447 E-mail

Re: [PHP] Files uploads problem

2003-04-01 Thread Adrian Greeman
Thank you very much - you are very observant and have just taught me a good lesson about checking minor errors even outside the obvious PHP code. It works now except for the unlink as you said. Regards Adrian Greeman Original Message - From: "Kevin Stone" <[EMAIL P

[PHP] Replace ultimate affiliate with a PHP offering

2003-06-05 Thread Adrian Teasdale
hi there We are currently using Ultimate Affiliate (a series of perl scripts) to run an affiliate program. We are wanting to move over to a purely-php offering mainly for integration etc. Does anyone have any recommendations for affiliate scripts (either paid or open source) whihc are as good, o

[PHP] Page loading time

2003-06-07 Thread Adrian Teasdale
Hi What is the easiest way to find out how long a page takes to load? I have a client that is concerned about how long the pages are taking and I want to find some way of analysing it. Is there a PHP script that can do this? Ade -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] PHP Helpdesk

2003-06-07 Thread Adrian Teasdale
Hi there Anyone have a PHP Helpdesk that they'd recommend. We are using Perldesk at the moment, so want something as good, but preferably better :) Thanks Ade -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Socket problem

2003-05-29 Thread Adrian Zaharia
y one. Regards, Adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] session

2003-06-02 Thread Adrian Portsmouth
The value isn't available until the next page and you should register with $_SESSION["name"]=$_POST["name"]; HTH Ade www.phpscriptsearch.com -Original Message- From: Aris Santillan [mailto:[EMAIL PROTECTED] Sent: 02 June 2003 11:55 To: Php (E-mail) Subject: [PHP] session hi this co

[PHP] heavy traffic portal site

2003-06-03 Thread Adrian Teasdale
Hi there We have been contacted about creating a portal site which will have some heavy usage. They are talking about having 100,000 subscribed users to the system which will have the following: 1. Web based email 2. Calender (for the persons own use, not shared) 3. File store (and sharing) an

RE: [PHP] heavy traffic portal site

2003-06-03 Thread Adrian Teasdale
dependent on > the hardware you have available. > > Also, are you looking for a "single", (semi)-integrated app such as > Horde, or would you be interested in individual solutions that could > be merged together? > > --- Adrian Teasdale <[EMAIL PROTECTED]> wr

[PHP] Best open source banner advertising application

2003-06-04 Thread Adrian Teasdale
Hi there We are looking for an open source banner advertising application to integrate into a site. The site will be getting a LOT of hits, so something that will scale well, report well and just work well would be useful. Anyone got any thoughts on their preferred application? I'd be interested i

RE: [PHP] check is pop address

2003-06-11 Thread Adrian Teasdale
Chris If you use a service like geoip I know that they have a list of all the free email providers and you can check against this database. This is useful as one tool for anti-fraud checking. Not sure if this is what you were looking for, but I thought I'd throw it in. Ade sourceguardian.com >

[PHP] creation of a robot

2003-06-11 Thread Adrian Teasdale
Hi there We have a requirement to create a robot to search for specific keywords on the web. Has anyone done this before and have any suggestions as to where we should start? I don't think that this is a light undertaking! :) Are there any existing tools out there which can be plugged in to do thi

[PHP] shorthand "if" notation

2003-06-11 Thread adrian GREEMAN
ut related extension to the question but I have seen similar in Javascript - namely --- var evt = (evt ? evt : ((window.event) ? window.event : null); is this the same notation or something else?] Regards Adrian Greeman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] piping email directly into PHP

2003-06-11 Thread Adrian Teasdale
Hi there We are wanting to create a little help/crm tool for internal use. Rather than reading (and parsing) in an email from a pop account, is it now possible to pipe email in directly to a database via PHP? If so, any pointers on how to do it and anything to watch out for? Thanks in advance

RE: [PHP] piping email directly into PHP

2003-06-11 Thread Adrian Teasdale
Wow, thanks! A nice detailed reply that should keep me busy for a good few hours All the best Ade > -Original Message- > From: John S. Huggins [mailto:[EMAIL PROTECTED] > Sent: 11 June 2003 23:02 > To: Adrian Teasdale > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] pip

[PHP] parse_str and NULL entry problem

2003-06-11 Thread Adrian Bolzan
into subfields separated by the "=" character. I then need the values, such as "3", "4", "Y", "N", "Running", "Queued", etc. Any help would be appreciated. Adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] piping email directly into PHP

2003-06-12 Thread Adrian Teasdale
er database you create. > > On Wednesday, June 11, 2003, at 05:31 PM, Adrian Teasdale wrote: > > > Hi there > > > > We are wanting to create a little help/crm tool for internal use. > > Rather > > than reading (and parsing) in an email from a pop account, i

[PHP] parse_str and NULL entry problem

2003-06-15 Thread Adrian Bolzan
into subfields separated by the "=" character. I then need the values, such as "3", "4", "Y", "N", "Running", "Queued", etc. Any help would be appreciated. Adrian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] A quick question - Help Please !

2002-08-19 Thread Adrian Murphy
to do it with javascript u could post the form to another local page with a form with hidden fields - send the mail and use onload="" to post the second form. would be a messy way to do it but would work. adrian murphy - Original Message - From: "Justin French" &l

[PHP] Apache 2

2002-08-20 Thread Adrian Ciutureanu
Hi, There is a note at http://www.php.net/ChangeLog-4.php for Version 4.2.0 (Note: Apache2 support is EXPERIMENTAL.) Is it still justified? adu -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Apache 2 and PHP

2002-08-21 Thread Adrian Ciutureanu
At http://www.php.net/ChangeLog-4.php#4.2.0 there is a note (Note: Apache2 support is EXPERIMENTAL.) Is this note still justified for PHP/4.2.2? Is it about security? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] why is html code written like this?

2002-09-02 Thread Adrian Murphy
thats xhtml - it's xml comliant html. tags must be closed so a tag like which didn't have a closing tag is written so,for example in php the nl2br() function now produces instead of the old - Original Message - From: "Victor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday,

Re: Fw: [PHP] question about Location

2002-09-06 Thread adrian murphy
make sure there is no whitespace before first To: "PHP" <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 11:34 AM Subject: Re: Fw: [PHP] question about Location > Put your code that takes care of the post before the line 2, output the > header and exit. Like this > if($_POST['submit'])

Re: [PHP] Source code

2002-09-06 Thread adrian murphy
add nl2br() to make it look pretty e.g - Original Message - From: "Roman Duriancik" <[EMAIL PROTECTED]> To: "PHP-General" <[EMAIL PROTECTED]> Sent: Friday, September 06, 2002 11:53 AM Subject: [PHP] Source code > How I show in IE source code of html page with php ? > > > roman >

[PHP] rewrite condition question

2002-10-08 Thread adrian murphy
ut my server admin. tia, adrian

[PHP] file_exists for URLs

2002-10-14 Thread Adrian Slusarczyk
Hi, I'm kinda new to PHP and have the following problem: In a function, I want to verify whether a file exists before I go on, and if it doesn´t, return false and stop right there. So I tried if(!file_exists($my_file)) { return false; exit; } But since $my_file is a URL, it doesn´t work. Does a

[PHP] lynx and crontab

2002-10-15 Thread adrian murphy
nx to supprt .php files? (i get a better response from them if i tell them exactly what to do ;-) ) tia adrian

Re: [PHP] Re: PHP & XML

2002-10-16 Thread Adrian Slusarczyk
immediately) to be cached, take a look at XML. Besides, once you CAN exchange your stuff with others, you might come across new ideas to improve your whole site! Regards, Adrian Slusarczyk "Simon Taylor" <[EMAIL PROTECTED]> schrieb im Newsbeitrag 414B25821CCAD6

[PHP] php, frames

2002-11-16 Thread Adrian Partenie
at I want is to press on the id from a row in upperframe table and to display in lowerframe the tableID. How can I do that? Thanks a lot, Adrian

[PHP] php, forms, mysql

2002-11-18 Thread Adrian Partenie
at I want is to press on the id from a row in upperframe table and to display in lowerframe the tableID. How can I do that? Thanks a lot, Adrian

[PHP] Editor

2002-06-14 Thread Adrian Greeman
with php tags for example. Does Java and other stuff too. Lots of plug-ins endlessly under development And it's FREE. I have it plugged in as the external text editor of choice with Dreamweaver. Regards Adrian Greeman Telephone +44 20 8672 9661 Mobile +44 780 329 7447 e-mail:- [

[PHP] about file permissions + cuteftp

2002-06-23 Thread Adrian Murphy
hi, how come when i make a dir thus mkdir($basedir,0777); cute can't then chmod or delete said dir. also vice versa : when i create a dir with cute with 777 access php can't do anything with it. it's very annoying.

[PHP] Register globals off

2002-07-01 Thread Adrian Greeman
don't understand why that was not needed with a string. I am also unclear what happens when you send something using header() - does that also go into an array - if so which one and how do I use it? This may all seem unecessarily complicated but I am not yet au fait with the whole thing.

[PHP] whats wrong with this function

2002-07-03 Thread Adrian Murphy
whats wrong with this. it's getting stuck somewhere function urls_clickable($string) { for($n=0; $n < strlen($string); $n++) { if(strtolower($string[$n]) == 'h') { if(!strcmp("http://";, strtolower($string[$n]) . strtolower($string[$n+1]) . strtolower($string[$n+2]) . strtolower($string[$

Re: [PHP] whats wrong with this function

2002-07-03 Thread Adrian Murphy
relax friend.i was just asking - Original Message - From: "1LT John W. Holmes" <[EMAIL PROTECTED]> To: "Adrian Murphy" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, July 03, 2002 2:08 PM Subject: Re: [PHP] whats wrong with this functi

Re: [PHP] whats wrong with this function

2002-07-03 Thread Adrian Murphy
n > On Wednesday, July 3, 2002, 1:47:05 PM, "Adrian Murphy" wrote: > > whats wrong with this. > > it's getting stuck somewhere > > "Somewhere" isn't very helpful. When asking for help be sure to include as much > information as possilble.

  1   2   3   4   5   >