Re: [PHP] need some regex help to strip out // comments but not http:// urls

2013-05-29 Thread Andreas Perstinger
://www.php.net/manual/en/regexp.reference.assertions.php ). (?!http:)// will match // only if it isn't preceded by http:. Bye, Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Boolean type forced on string assignment inside if statement

2013-01-03 Thread Andreas Perstinger
representation of the numbers to see what is happening: 2 decimal is 0010 binary 1 decimal is 0001 binary 2 1 == 0010 0001 == == 0 In your other examples you had 2 3 == 0010 0011 == 0010 == 2 and 4 3 == 0100 0011 == == 0 Does this help? Bye, Andreas -- PHP General Mailing List

Re: [PHP] Unexpected behavior of max() function

2012-12-10 Thread Andreas Perstinger
tells you, you are comparing strings and the character '9' is greater than the character '1' (at the beginning of the two other strings). Bye, Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] regexp novice

2012-05-18 Thread Andreas Perstinger
this because now only one digit is allowed before the :. Bye, Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP, PDO and MS-SQL ?

2011-12-09 Thread Andreas
Hi, could someone tell me what I need to install and how to configure everything so that I can connect with PHP and PDO to a MS-SQL server? I have an OpenSuse 11.4 installation. I added the Apache-PHP repository and upgraded to PHP 5.3.8. php-mssql, -php-odbc, libfreetds and the

Re: [PHP] Common way to store db-password of open session?

2011-12-04 Thread Andreas
Am 03.12.2011 23:54, schrieb Tamara Temple: If you give every application user a unique set of database access permissions, that means that any one of those users can access your data base WITHOUT going through your application if they manage to get access to your data base server. Is that

Re: [PHP] Common way to store db-password of open session?

2011-12-03 Thread Andreas
Am 29.11.2011 23:54, schrieb Tamara Temple: As I read it, the OP may be confusing application user logins and the credentials used by the application to access the data base. Individual application users should *NOT* have access directly to the data base by having their individual credentials

[PHP] Common way to store db-password of open session?

2011-11-29 Thread Andreas
Hi, is threre a most advisble way to store db-passwords of an open user-session? As far as I get it, a common login strategy is to let the user login by namepassword, check it, store a login=TRUE as php-session variable and later use a common dbuser+pw to query data provided login is TRUE.

[PHP] Is there a decent design app ?

2011-11-25 Thread Andreas
Hi Is there a decent design app that can automatically update links within the pages of a php site whenever a referred file gets moved or renamed? Like you have /foo.css and for some reason or another you move it to /lib/css and rename it to bar.css. Now it'd be nice if an IDE was aware of

[PHP] Howto detect the hostname of the server?

2011-11-25 Thread Andreas
Hi, how could I identify the server the script runs on? I've got a testserver on Windows and a remote system on Linux that need a couple of different settings like IP and port of db-server or folder to store logfiles. I'd like to do something like: if ( $_SERVER['some_key'] = 'my_test_box'

[PHP] Tutorial for the structure of an php-app ?

2011-11-25 Thread Andreas
Hi again, is there a tutorial for the structure of an php-app? There are more than enough books and online docs that teach the basics of PHP and of course the native mysql commands. I'd now rather need a help to figure out how to pull up a wee bit more complex app. I know how to connect to a

Re: [PHP] Howto detect the hostname of the server?

2011-11-25 Thread Andreas
Am 26.11.2011 01:35, schrieb Simon J Welsh: On 26/11/2011, at 1:14 PM, Andreas wrote: how could I identify the server the script runs on? php_uname('n'); http://php.net/php_uname Great, that even works on a ssh-tunnel. I got derailed by the fact that my tunnel maps the remote server

Re: [PHP] Dealing with multiple form submissions

2011-08-25 Thread Andreas
Am 25.08.2011 11:01, schrieb John Black: True, a SESSION can be reset by closing the browser but I am not trying to deny a user from submitting different information again. I want to prevent them from submitting the same data again by accident (back button or refresh). what about storing

[PHP] How to catch an irregular end of an application?

2011-08-25 Thread Andreas
Hi, what is the best practice to catch an irregular end of an application? The browser might crash or the user closes accidently the browser window decides to jump away to his favourite bloq without loging out of my application. Is there some way to let an javascript event trigger some ajax to

[PHP] how catch a warning by file_put_contents() ?

2011-08-19 Thread Andreas
Hi, I wrote stuff with file_put_contents() in a try{} catch{} and it worked. Then I'd like to check what happens when some error occurs so I writeprotected the targetfile. Instead of getting my own message by the catch{} block I got a standard warning in the browser. Can't I catch those

[PHP] Can't create new projects with Netbeans as nonadmin

2011-08-18 Thread Andreas
Hi, Netbeans 7.0.1 on WinXP. I can't create new projects with Netbeans without being logged in as administrator. When I call file-new project I only get the category Samples. The category PHP with the empty projects only appears when I'm logged in as Administrator. How can I create

[PHP] Newbie question. What is the best structure of a php-app?

2011-08-15 Thread Andreas
Hi, I'm fairly new to PHP but not to programming as such. Currently I sat up XAMPP with xdebug, Netbeans and Eclipse to get a feeling. I can write and run php-files but I am wondering how I should construct a more complex application that runs over several pages between a login and a logout.

[PHP] dependency check

2011-07-22 Thread Andreas Moroder
the files recursively for included/used files and lists them ? With this list I could delete the remaining files. Thanks Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] concatenating with . or ,

2008-08-25 Thread Andreas J.
hi, here it is described in detail: http://blog.libssh2.org/index.php?/archives/28-How-long-is-a-piece-of-string.html Govinda schrieb: easy to find our about concatenating with . in the docs... but not so with , what is the difference? -- PHP General Mailing List (http://www.php.net/) To

AW: [PHP] scalable web gallery

2008-07-10 Thread Andreas J.
in 1 year, there going to be more than 1000 photo uploaded or more. That isn’t really much. A directory can held much more than a few thousand files. They use more than one Server because 1 Server can't handle the load. The don’t do that because of limited File system. But the file system may

[PHP] XMLRPC and file_get_contents

2007-08-16 Thread Andreas Schlicker
, the file_get_contents method doesn't returns null, and the script finishes. However, the XMLRPC server is not finished with the computation and gets a broken pipe since the client has already closed the connection. Is there some timeout? Am I doing something wrong? Kind regards, Andreas

Re: [PHP] XMLRPC and file_get_contents

2007-08-16 Thread Andreas Schlicker
Stut wrote: Andreas Schlicker wrote: Hi all, I'm writing an XML-REC client in PHP, based on the following example: ?php $request = xmlrpc_encode_request(method, array(1, 2, 3)); $context = stream_context_create(array('http' = array( 'method' = POST, 'header' = Content-Type: text/xml

[PHP] LDAP and character encoding

2006-12-14 Thread Andreas Dahlen
How do I convert $dn to a readable format? I've tried utf8_decode, but it doesnt work. utf8_decode works on the entries returnd by ldap_get_attributes. /Andreas This message was sent using IMP (http://www.horde.org). Running on PHP

Re: [PHP] how should MS Access DATETIME be handled in PHP?

2006-04-13 Thread Andreas Korthaus
://odbtp.sourceforge.net/timetable.html#list regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Extending a class with a static constructur (like PEAR::DB)

2006-03-10 Thread Andreas Korthaus
that class. Best regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Extending a class with a static constructur (like PEAR::DB)

2006-03-10 Thread Andreas Korthaus
DBToyExt(); $db = $dbtoy-connect() $dbtoy-testext('testing'); $result = $db-query('SELECT...'); //[...] If you want to avoid that, you have to write a wrapper around DB. best regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: create xml root-element with xmlns and xsd link (using DOM)

2006-03-06 Thread Andreas Korthaus
Rob wrote: That's how namespaced attributes, which is nothing more than you are creating, are supposed to be created in DOM. OK, thank you! best regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: simplify DOM api

2006-03-06 Thread Andreas Korthaus
Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: DOMElement::setAttribute() manual example question

2006-03-05 Thread Andreas Korthaus
, while $node = $doc-createElement(root); is not? Why? btw., I think this: http://news.php.net/php.internals/22117 is a very, very, very good idea! I hope the patch will make it into core soon! best regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] simplify DOM api

2006-03-05 Thread Andreas Korthaus
()? Does it work with Unicode strings? best regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] create xml root-element with xmlns and xsd link (using DOM)

2006-03-05 Thread Andreas Korthaus
', 'xsi:schemaLocation', 'http://example.com/test test.xsd'); echo $doc-savexml(); ? Does DOM provide nothing else? Does anybody see any problems with this approach? Best regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] DOMElement::setAttribute() manual example question

2006-03-03 Thread Andreas Korthaus
? Is there a problem with the 2nd way? best regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Coding Practice: Use global $var or pass in by refernce

2006-03-03 Thread Andreas Korthaus
much better than a global variable (and again, what about config-data?). So what's the way you'd recommend and why? best regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] XML-RPC problem with long running times

2005-12-29 Thread Andreas Schlicker
that acted the same way when called by a browser. This worked perfectly (I tested it up to 20 minutes waiting time) even if I used set_time_limit(5) and sleep(500). Does anybody have an idea how to solve this problem? Thanks in advance. Andreas -- PHP General Mailing List (http://www.php.net

Re: [PHP] XML-RPC problem with long running times

2005-12-29 Thread Andreas Schlicker
if the call takes longer than 5 minutes and there is no interrupt? Is there some special XMLRPC timeout? Any idea? Andreas Andreas Schlicker schrieb: Hi all, I'm using Apache/1.3.33 (Unix), PHP/5.0.3, mod_ssl/2.8.22, OpenSSL/0.9.6a. I wrote a dummy script that is called by a Java program via XML

Re: [PHP] Convert fake Unicode to real UTF-8

2005-11-04 Thread Andreas Jakl
. About the question where I saw it - both in phpMyAdmin and in my own PHP script. It seems to be really stored as an ASCII text in the DB, as a substr($row['text'], 0, 1) also simply outputs . Thanks for your help, Andreas Minuk Choi schrieb: Have you tried feeding that through htmlentities()? e.g

[PHP] Convert fake Unicode to real UTF-8

2005-11-03 Thread Andreas Jakl
, as the text seems to really consist of the individual ASCII chars like , #. Therefore, a normal to-unicode-conversion doesn't change anything. Thanks in advance, Andreas Jakl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Compiling PDO statically into PHP 5.0.4

2005-06-06 Thread Andreas Korthaus
/ \ --enable-pdo \ --with-pdo-sqlite \ --enable-memory-limit It did not fail, but after make make install there is no pdo-support compiled in. What is going wrong here? What can I do? kind regards Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Tomcat and php in Suse 9.2

2005-04-14 Thread Andreas Persson
? /Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php.net bug tracking tool?

2004-07-29 Thread Andreas Goetz
Curt, thank you. I like Mantis, too but wanted to check the php thing. I was confused there is no reference to it anywhere, as it's used by e.g. MySQL, too. Thanks, Andreas Curt Zirzow [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] * Thus wrote Andreas Goetz: Which bug tracking

[PHP] php.net bug tracking tool?

2004-07-28 Thread Andreas Goetz
Which bug tracking tool is php.net using? I know it sounds stupid, but even as I can look at the source on php.net, I can't find any documentation- is this package available for download somewhere? Thanks, Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] php5: domDocument source encoding?

2004-07-26 Thread Andreas Goetz
I'm confused and google couldn't answer :( I'm parsing XML files using domDocument and XPath in php5. Works like a charm. But- how do I know if I need to apply and utf8decode to the data returned from the domDocument? Unlike xml_parser_create the domDocument does not seem to offer an parameter

Re: [PHP] php5: domDocument source encoding?

2004-07-26 Thread Andreas Goetz
Excellent, thank you. So I should read the document, the do a $doc-encoding = 'ISO-8859-1' before reading any nodedata values to obtain ISO characters?! As documentation hasn't caught up with $doc-encoding, how could I've found out myself? Thanks again for the quick help, Andreas Christian

[PHP] How to use reflection API?

2004-07-21 Thread Andreas Goetz
/language.reflection.class.reflection_function.html this should already work. Any ideas? Thanks, Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Take post values

2004-03-17 Thread Andreas Brunschweiler
How I take te post values ? $_POST['field_name'] php.net is your friend... http://ch2.php.net/manual/en/language.variables.predefined.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Conditional Include

2004-03-17 Thread Andreas Brunschweiler
for any suggestions! Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] session expires

2004-01-13 Thread Andreas Magnusson
John W. Holmes [EMAIL PROTECTED] skrev i meddelandet news:[EMAIL PROTECTED] Andreas Magnusson wrote: Hi, I wonder if anyone knows of a way to detect if a session has expired (when your session.cookie_lifetime != 0). I've tried to see if the session-vars are unset, but that doesn't seem

[PHP] session expires

2004-01-12 Thread Andreas Magnusson
has expired. Thanks in advance! Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Welcher Bugtracker in/für PHP?

2004-01-02 Thread Andreas Korthaus
Hi! Suche nen netten/einfachen Bugtracker für ein PHP-Projekt. Welchen könnt Ihr empfehlen? Grüße Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: which Bugtracker for a PHP-project?

2004-01-02 Thread Andreas Korthaus
Andreas Korthaus wrote: Suche nen netten/einfachen Bugtracker für ein PHP-Projekt. Welchen könnt Ihr empfehlen? Oh sorry, I it wasn't the german list ;-) But perhaps it's also a question for this group: I am looking for a nice/easy Bug-Tracker for my PHP-Project. What would you recommend

[PHP] Re: HTTP headers, IE and downloading

2003-12-23 Thread Andreas Magnusson
difference would actually make such a big difference... Thank you very much! /Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: HTTP headers, IE and downloading

2003-12-23 Thread Andreas Korthaus
Hi! Andreas Magnusson wrote: For a normal file (not through PHP) the headers are: Accept-Ranges: bytes Connection: Close Content-Length: 25600 Content-Type: application/msword Date: Tue, 23 Dec 2003 09:51:19 GMT ETag: 08f72d578c3c31:8d0 Last-Modified: Tue, 16 Dec 2003 02:03:44 GMT

Re: [PHP] Re: HTTP headers, IE and downloading

2003-12-23 Thread Andreas Magnusson
John W. Holmes [EMAIL PROTECTED] skrev i meddelandet news:[EMAIL PROTECTED] Andreas Magnusson wrote: And through PHP (my script) it is: Accept-Ranges: bytes Cache-Control: private I've had the cache-control header cause problems with IE in the past. It's sent by starting a session

[PHP] Re: HTTP headers, IE and downloading

2003-12-22 Thread Andreas Korthaus
Hi! Andreas Magnusson wrote: I'm writing a script to view/download an email-attachment. If the file happens to be an MS Word document and the browser IE (only tried with 6.0), then the download fails. If I choose to download (Content-Disposition: attachment; filename=whatever.doc) then only

[PHP] Re: HTTP headers, IE and downloading

2003-12-22 Thread Andreas Magnusson
able to help me since the headers looks good to me... /Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: HTTP headers, IE and downloading

2003-12-22 Thread Andreas Korthaus
Hi! Andreas Magnusson wrote: Have a look at: http://pear.php.net/package/HTTP_Download I looked at it and it's hard to see what it does differently from what I do... Use Ethereal or your own tracer to find out! And compare to a direct request to a real file! AFAIK the headers sent here

Re: [PHP] [posibleOT] Forcing entering te site thru index.php

2003-12-21 Thread Andreas Magnusson
. /Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] HTTP headers, IE and downloading

2003-12-21 Thread Andreas Magnusson
and would be very happy if someone had one... Thanks in advance /Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Magic Quotes

2003-12-21 Thread Andreas Magnusson
was posted, then post something like: I'll be back If the page displays: \I\'ll be back\ then you're safe and don't need to use addslashes(). /Andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] /etc/passwd

2003-07-10 Thread Andreas Mendyk
-- Andreas Mendyk [EMAIL PROTECTED] - mobile +49 172 7111512 Uhlandstr. 7 D-73271 Holzmaden http://www.mendyk.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Ticketing System?

2003-06-25 Thread Andreas Cahen
Hello List :) Is there any usefull ticketing system (Hotline/Support/etc.) written in PHP? I have found some on hotscripts.com, but I don't know which one is really got or not.. Any suggestions? Cheers, Andreas Cahen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] Opening remote files with fopen

2003-03-29 Thread Andreas Breitschopp
much in advance Andreas Andreas Breitschopp - Softwareentwicklung und -vertrieb Leopoldstraße 116, D-80802 München; E-Mail: [EMAIL PROTECTED] Tel.: +49 89 38898588, Fax: +49 89 38898589 http://www.ab-tools.de, http://www.ab-soft.de, http://www.ab-archive.com -- PHP General Mailing List

[PHP] Rather complex regular expression for the preg_match_all function

2003-01-22 Thread Andreas Sheriff
structure. ex: pThis is a lt;pgt; tag with a complete structure/p Instead, I want to find the p tag with no closing tag, up to the next p tag or a closing tag of any type that doesn't have an opening tag after the initial p found (not including this orphaned closing tag) Andreas Sheriff -- PHP

[PHP] Creating Extensions DLL with Delphi

2002-12-23 Thread Andreas Steibl
Don't know if this is the right place to ask this. I need to write a little extensions DLL in Delphi for PHP where can i find inforamtion for this ? thanxs in advance snoopy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Creating Extensions DLL with Delphi

2002-12-18 Thread Andreas Steibl
Don't know if this is the right place to ask this. I need to write a little extensions DLL in Delphi for PHP where can i find inforamtion for this ? thanxs in advance snoopy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Problem with sessions and Internet Explorer

2002-11-22 Thread Andreas Otto
servers and the server in NewYork is that only the server in NewYork is protected with SiteShield. Which leads me to the conclusion that there might be a problem related to the combination of SiteShield, IE and PHP. If you have any ideas feel free to share your thoughts with me. Cheers, Andreas

Re: [PHP] Problem with sessions and Internet Explorer

2002-11-22 Thread Andreas Otto
rules on the target server, depending on the user agent, so IE's would end up in a defunct installation? I'd check for this inn the first place. Well, guess what I did before writing this eMail ;-) At the end of my original eMail I said: On Friday 22 November 2002 14:24, Andreas Otto wrote

Re: [PHP] Problem with sessions and Internet Explorer

2002-11-22 Thread Andreas Otto
- can anyone else chime in please? I'd also try to holler at the guys at Tempest... I have been trying that, but it looks like I have to run the query through our office in NewYork where the servers are hosted. My colleagues in NewYork will have the right support details. Cheers, Andreas

Re: [PHP] right name for IfModule bla.c

2002-09-24 Thread Andreas Hasenack
Em Tue, Sep 24, 2002 at 08:59:54AM +0100, Chris Hewitt escreveu: It looks fine to me (I'm no expert), but maybe its case sensitive? You have /Ifmodule rather than /IfModule. Otherwise perhaps remove the IfModule completely for a test to see if it is the /IfModule causing the problem. It's

Re: [PHP] right name for IfModule bla.c

2002-09-24 Thread Andreas Hasenack
Em Tue, Sep 24, 2002 at 11:08:06AM -0400, Paul Nicholson escreveu: What exactly is not working? The directives inside the IfModule branches are being ignored. Thus the include path is not being modified and my application doesn't work. I know, I can change the application to include the right

Re: [PHP] right name for IfModule bla.c

2002-09-24 Thread Andreas Hasenack
Em Tue, Sep 24, 2002 at 08:53:16PM +0100, Chris Hewitt escreveu: Andreas Hasenack wrote: Someone at the apache list told me that the name would be sapi_apache2.c, because that's where the STANDARD20_MODULE_STUFF define is used. But sapi_apache2.c didn't work either. Ah, I didn't know you

[PHP] right name for IfModule bla.c

2002-09-23 Thread Andreas Hasenack
What is the right name to use in apache's (2.0.41-dev) IfModule directive to test if the php4 module is loaded? I'm including the file below via httpd.conf's Include statement but the part between the IfModule is being completely ignored: Directory /srv/www/default/html/acid AllowOverride

[PHP] read all files in directory

2002-05-11 Thread Andreas Indahl
Hi! How can I read all files in a directory, when I don't know which files are there? Sincerely Andreas Indahl -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: error-catching

2002-05-09 Thread Andreas Indahl
use or die (DB-server down); at the end of you line. Gert Mellak [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Hi! When I open a database connection and i. e. the db-server is down, I get a very long, long error message telling me that the server is down. What I want to do is

[PHP] include text from a html-file online

2002-05-09 Thread Andreas Indahl
I want to include text from a html-file that is online at another website. To be more precise: I want to include my seti-stats from http://setiathome.ssl.berkeley.edu/ on my own homepage. Can I do this with PHP? Sincerely Andreas Indahl -- PHP General Mailing List (http://www.php.net

Re: [PHP] PHP-script in MySQL-table

2002-04-23 Thread Andreas Stehn
? the above so that the script is executed? Is it possible? Web inventor Michael Cronstrom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Andreas Stehn http://www.stehn.com I do not read or respond to mail

Re: [PHP] Anyway to open a PHP file and view its code in the browser?

2002-02-14 Thread Andreas Gietl
then do a symbolic link On Thursday 14 February 2002 22:34, Kevin Stone wrote: I'm glad you posted this. It's great to know. Unfortunately it's not what I need to do. I'm uploading and updating my scripts all the time. So I need to offer code views of *active* scripts. Changing the file

[PHP] compiling modues

2002-02-13 Thread Andreas Gietl
at a documenation? I was not able to find a good one that worked for me. thanx andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP not able to send email

2001-12-17 Thread Andreas Landmark
: this is offtopic). -- Andreas D Landmark / noXtension When I was in school, I cheated on my metaphysics exam: I looked into the soul of the boy sitting next to me. -- Woody Allen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Online editor that edits all pages

2001-12-13 Thread Andreas Landmark
? Can't think of a ootb solution that does what you want... -- Andreas D Landmark / noXtension On Monday mornings I am dedicated to the proposition that all men are created jerks. -- Avery -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] Online editor that edits all pages

2001-12-13 Thread Andreas D. Landmark
as I am subscribed to the list (how would I otherwise been able to reply?) -- Andreas D Landmark / noXtension Real Time, adj.: Here and now, as opposed to fake time, which only occurs there and then. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] Get Hours/Mins/Secs between two timestamps?

2001-12-12 Thread Andreas Landmark
one from the other and then use gmdate() on the difference, that way you don't have to worry about differences in excess of 60 secs... -- Andreas D Landmark / noXtension Time flies like an arrow, but fruit flies like a banana. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e

Re: [PHP] Class in PHP

2001-12-05 Thread andreas
On Wed, 5 Dec 2001 10:41:53 -0500 Wee Chua [EMAIL PROTECTED] wrote: Hi all, How many extension of subclass can PHP have? Can I extend subclass to more different subclass? Do you mean how deep a inheritance you can have? e.g. A \ B | \ C D | \ E F

[PHP] Feauture request/proposal: import

2001-10-27 Thread Andreas Aderhold
Hi All, What do you guys think of a import feauture for php. This allows developers to use packages and a package trees for including files. We're using a php written import for the binarycloud app framework with grat success. It's extremly handy, easy to use, clear and straight forward. We

[PHP] Feauture request/proposal: import

2001-10-27 Thread Andreas Aderhold
Hi All, What do you guys think of a import feauture for php. This allows developers to use packages and a package trees for including files. We're using a php written import for the binarycloud app framework with grat success. It's extremly handy, easy to use, clear and straight forward. We

[PHP] session class driving me nuts

2001-09-30 Thread andreas \(@work\)
ON ? thank you andreas -- 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] (RW) PHP installation problems

2001-09-26 Thread Andreas D. Landmark
or whatever pleases you) go with the built in support... -- Andreas D Landmark / noXtension Real Time, adj.: Here and now, as opposed to fake time, which only occurs there and then. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] WEB LOG

2001-09-24 Thread Andreas Gietl
On Monday 24 September 2001 16:04, Jeffrey Paul wrote: Well. If you check the HTTP_REFERER on the target-site it would work and give you at least some security. However it is still not really secure. At 07:08 AM 9/24/2001, Chris Herring wrote: OOPS, again, elseif isn't what needs to be

Re: [PHP] WEB LOG

2001-09-24 Thread Andreas Gietl
This is the reason why i wrote it is just some security. On Monday 24 September 2001 16:15, Jeffrey Paul wrote: At 10:09 AM 9/24/2001, Andreas Gietl wrote: Well. If you check the HTTP_REFERER on the target-site it would work and give you at least some security. However it is still not really

Re: [PHP] Getting IP address

2001-09-19 Thread Andreas Gietl
On Wednesday 19 September 2001 11:37, Andrew Semark wrote: $addr = getenv('REMOTE_ADDR'); Can anybody tell me how to get the IP address of the remote machine looking at the web page. I have two versions of PHP 4 On the box with version 4.0.1 I can use $HTTP_SERVER_VARS[REMOTE_ADDR], but on

Re: [PHP] user auth

2001-09-14 Thread Andreas Gietl
On Friday 14 September 2001 17:01, you wrote: if you want to work with the passwords that originally are in the shadow-file your webserver needs to have read-permissions for the shadow-file, which is no good idea. you could parse out the passwords from the shadow-file and write them into an

Re: [PHP] Unable to find stream pointer

2001-09-13 Thread Andreas Gietl
On Tuesday 11 September 2001 19:00, Andreas Gietl wrote: why is it that nobody answers my question? Does nobody know an answer? Hi PHP-Users, I am having problems with php and imap now for several days on several servers. I just get the following Error: Warning: Unable to find stream

[PHP] Re: WELCOME to php-general@lists.php.net

2001-09-13 Thread Andreas Sartori
:) andreas sartorihellbrunnerstrasse 34 Datenbankadministration unix support 5020 salzburg, austria zid - universitaet salzburgtel: +43 (662) 8044-6731 http

[PHP] database

2001-09-12 Thread andreas \(@work\)
hi, where can i get a database with the postal codes from germany ? i need to doublecheck the entries posted on our website andre

[PHP] Unable to find stream pointer

2001-09-11 Thread Andreas Gietl
on the internet, but i still don't know what is the reason for this error and how to work around it. Does anybody of you know where this error originates? thanx andreas -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] Problem with session controiler files in PHP on Roxen

2001-09-06 Thread Andreas Lundgren
occurs? Best regards, Andreas Lundgren mailto:[EMAIL PROTECTED] Andreas Lundgren Magistratsvägen 55P:405 226 44 Lund 046-320250, 0708-960717, ICQ:1430437 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP] PHP ext

2001-08-09 Thread Andreas D. Landmark
for the future... -- Andreas D Landmark / noXtension Real Time, adj.: Here and now, as opposed to fake time, which only occurs there and then. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [Re: [PHP] user's ip]

2001-08-07 Thread Andreas D. Landmark
... -- Andreas D Landmark / noXtension Real Time, adj.: Here and now, as opposed to fake time, which only occurs there and then. -- 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

Re: [PHP] Traceroute without traceroute command!

2001-08-07 Thread Andreas D. Landmark
for the system in question and shove it in your own homedir owned by you and executable by you. They might not be too pleased if you're not supposed to run stuff like that, but if you need it, do it... -- Andreas D Landmark / noXtension Real Time, adj.: Here and now, as opposed to fake

Re: [PHP] Re: syntax help~~~

2001-08-06 Thread Andreas D. Landmark
, Primary Key (WId) ) ) or die (Error! Cannot create table ! . mysql_error() ); ? -- Andreas D Landmark / noXtension Real Time, adj.: Here and now, as opposed to fake time, which only occurs there and then. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

  1   2   >