[PHP] SDO DAS XML drops some elements

2012-03-06 Thread Emil Obermayr
? Is there a more detailed tutorial somewhere? Are there any known bugs in that library? Thanks for any help Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] CMS plugin support

2010-10-22 Thread Emil Guy
template, or self-made cms, or what solutions do you use? Kind Regards Emil Edeholt

[PHP] Encrypt database table

2008-09-22 Thread emil
characters when encrypted in gpg. Best Regards Emil

[PHP] Search engines and cookies

2008-04-07 Thread Emil Edeholt
? Right now google only index the start pages on my site and I'm trying to figure out why. If I can't use cookies, how would you force users to select a region but letting the search engine spiders in on the site somehow? Hope this wasn't too off topic. Kind Regards Emil -- PHP General

Re: [PHP] Security scanner

2008-02-11 Thread Emil Edeholt
Thanks. Sure, I know how to escape and filter the input.. But since not all my sites use PDO yet, and I use some external code it would be a good idea to also use an sql injection scanner. Emil [EMAIL PROTECTED] wrote: Injections only work on sloppy code. If you are using globals you

[PHP] Security scanner

2008-02-11 Thread Emil Edeholt
and why? Any other good security tools for LAMP that one should know of? Kind Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: php-general Digest 25 Jan 2008 07:59:28 -0000 Issue 5255

2008-01-25 Thread Emil Edeholt
. Is there a faster way of doing it? Is ImageMagick better for example? Kind Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Verification number

2008-01-24 Thread Emil Edeholt
. Any ideas? Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Verification number

2008-01-24 Thread Emil Edeholt
Hi, Thanks for your sugestions. I ended up using the Luhn algorithm. Simple but I think it will work for me. http://en.wikipedia.org/wiki/Luhn_algorithm Emil George Pitcher wrote: Emil, have you looked at the 10-digit ISBN verification, which has just been replaced by the 13-digit EAN

[PHP] Calendar

2007-12-03 Thread Emil Edeholt
that holds the events together. How long forward does one usually create the events. Two-three years...? Sorry if I'm a bit blury. But any ideas on recurring events are welcome. I guess I could just hack something together, but it would be fun to do it right. Regards Emil -- PHP General Mailing

[PHP] MySQL and SVN

2007-10-25 Thread Emil Edeholt
, and if I've made changes on both computers I have no simple way to merge the structures like I can in svn. How do you handle this in your projects? Best Regards Emil Edeholt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] MySQL and SVN

2007-10-25 Thread Emil Edeholt
it would have to be. Best Regards Emil dordea cosmin wrote: consider replication Emil wrote: I would like to know how you guys handle mysql structures between different computers (and for that matter from the developer desktop to the stable server). I work on my home and my office computer

[PHP] Render fonts

2007-08-19 Thread Emil Edeholt
Hi I would like to render some fonts into images, for captions on a site. What tools should I use to get the best looking render? Do you guys use the built-in tools PHP has, or are there third party libraries that does a better job? Thanks! Kind regards Emil -- PHP General Mailing List

[PHP] Re: Includes eating up my time

2007-07-31 Thread Emil Ivanov
include is thie __autoload() function. In other words - php supports load-on-demand for classes. Check out http://php.net/__autoload Regards, Emil Ivanov Dave M G [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] PHP general list, This is probably obvious to people who are good at PHP

[PHP] Unit testing

2007-07-30 Thread Emil Edeholt
Hi What (preferably open source) tools are the best for unit testing php? JUnit is not available for PHP from what I can see? Thanks for your time! -- Best Regards Emil Edeholt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Disadvantages of output buffering

2007-06-26 Thread Emil Edeholt
Hi! My php project would get a much cleaner code if I could set cookies anywhere in the code. So I thought of output buffering. But I can't find any articles on the cons of output buffering. I mean it most be a reason for it being off by default? Kind Regards Emil Edeholt -- PHP General

Re: [PHP] Disadvantages of output buffering

2007-06-26 Thread Emil Edeholt
Thanks for your help Dave and Rob. I will start using output buffering a lot more now. Regards Emil Robert Cummings wrote: Cons of output buffering: - tncy weency time overhead - memory overhead since buffered content remains in memory until flushed. Cheers, Rob

[PHP] Wiki lib?

2007-06-19 Thread Emil Edeholt
. It would be really neat with a small php library under LGPL or BSD or similiar license. Any ideas? -- Regards Emil Edeholt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Making your our MVC framework with PHP

2007-06-07 Thread Emil Ivanov
Hi, I just posted something like a how-to about making your very own PHP-based lightweight MVC framework. Hope you like it: http://vladev.blogspot.com/2007/06/implementing-your-very-own-lightweight.html Regards, Emil Ivanov -- PHP General Mailing List (http://www.php.net/) To unsubscribe

[PHP] Re: PHP5 Static functions called through __call() that don't exist... yet

2007-05-19 Thread Emil Ivanov
Hi, I also think this a good proposal, but you might consider writing to the internals group, as this group is only for discussions and most of the people that read it are PHP users and have no idea how the language is made (including me). Regards, Emil Ivanov Jared Farrish [EMAIL PROTECTED

[PHP] Re: PHP debugger

2007-05-15 Thread Emil Ivanov
with instruction how to get things working. On the Xdebug site there's a lot of information how to setup PHP and XDebug. Note that the precompiled binary of the support for PDT will work for you, as it's written in Java and you don't need to compile it. Regards, Emil Ivanov Miles Thompson [EMAIL

[PHP] Re: problem with string floats in PHP

2007-05-15 Thread Emil Ivanov
?php$var = '5.812E-08';var_dump($var);$var = (float)$var;var_dump($var);var_dump($var + 2);?Outputs:string(9) 5.812E-08 float(5.812E-8) float(2.0005812) All you need is to cast it (float) to float, (int) to int. Regards, Emil Ivanov Pablo Luque [EMAIL PROTECTED] wrote in message news

[PHP] session destroy callback (onSessionDestroy event)

2007-05-13 Thread Emil Ivanov
Hi, I need to do some clean-up when the session is destroyed or values are removed from it (expired). using session_set_save_handler does not work for me, as I don't want to rewrite session handling, I just need to be notified when a value is destroyed. Regards, Emil Ivanov P.S. I'm dealing

[PHP] Ajax?

2007-05-09 Thread Emil Edeholt
ugly and was time consuming to debug. Thanks! Kind regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PEAR mail sorted as spam

2007-01-03 Thread Emil Edeholt
['To'] = $to; $headers['Subject'] = $subject; $params[host] = my.smtp.com; $mail_object = Mail::factory('smtp', $params); $mail_object-send($recipients, $headers, $body); } -- Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PEAR mail sorted as spam

2007-01-03 Thread Emil Edeholt
Hi, I can of course tell Thunderbird that something is not spam, but I don't want all of my users to have to do that for every mail I send via pear. Maybe I haven't included some header non-spam usually have or something? Did my script look all okey? Emil Roman Neuhauser wrote: Surely

Re: [PHP] PEAR mail sorted as spam

2007-01-03 Thread Emil Edeholt
Are you sure? The email is very short and is something like this (but in swedish): Hello, Your order is now available. Regards Emil Jochem Maas wrote: it's not the script. it's the content of the email (possibly in conjunction with 'bad' mail headers, etc) -- Hälsningar Emil Edeholt

Re: [PHP] PEAR mail sorted as spam

2007-01-03 Thread Emil Edeholt
on all/most email clients, not just firefox. But I'll talk to the mozilla folks instead, if you think it's so off topic to discuss this. Thanks for your time... Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] flash/php file uploader

2006-12-12 Thread Emil Edeholt
to update status 7. perl file forwards the saved data to a php file, so that it can make necessary operations on the raw data. It works fine this way. --Aras -- Hälsningar Emil Edeholt Karlsson Novak Medical AB Telefon 090-154830 Mobil 070-3758222 E-post [EMAIL PROTECTED] -- PHP General

[PHP] flash/php file uploader

2006-12-11 Thread Emil Edeholt
ask somewhere else? Thanks for your time. Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Encoding PC-850

2006-10-30 Thread emil
. Regards Emil

[PHP] mail() encoded subject line

2006-10-16 Thread Emil Edeholt
. Any idea of how to pass what encoding to use on an email subject? Thanks! Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] canon jpegs

2006-10-12 Thread Emil Edeholt
this? I'm in a bit of a panic. Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Texture and wrap

2006-08-31 Thread Emil Edeholt
of the frame in a 3d-ish look. Do you understand what I mean? Is this somehow possible? I guess I would use gd and maybe a transparent png to get the texture, or am I way off? The wrapping thing I have no clue how to make. Thanks for your time! Regards Emil -- PHP General Mailing List (http

Re: [PHP] Texture and wrap

2006-08-31 Thread Emil Edeholt
Hi Thanks, but what I meant with wrapping around a frame was this: http://www.proformat.se/gfx/pic_006_kilram.jpg Not just a normal frame around the image. Emil Emil: Yes, that can be done by simply merging images (i.e., watermark). For example: http://xn--ovg.com/watermark The texture

Re: [PHP] Texture and wrap

2006-08-31 Thread Emil Edeholt
hope it will look good and that it's fast/easy enough for me to implement. Thanks both of you. tedd wrote: Emil: To continue top posting. Dude, an image is an image. You're not wrapping anything -- you're just producing an image that looks a certain way. My first example did not just put

[PHP] Bar codes

2006-04-13 Thread Emil Edeholt
shall I use to print it out? Is it just as a regulat font, or do I need some special bar code lib? Thanks for your time Best regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Secure input

2006-02-27 Thread emil
of? Sorry if this has been asked a million times before. Thanks for your time /Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Cookies in non-frame sites

2006-02-26 Thread emil
each page, so I can call header stuff before it's executed. But it's not a very good looking approach. I did it like this in every page: include(top_bottom_lib); // cookie stuff echo getTopPage(); // page stuff echo getBottomPage(); I hope you understand my problem. Thanks Best regards Emil

[PHP] Using GPG in Safe Mode

2006-01-17 Thread emil
Test test@test.com When I run it from cli myself it works fine, but it fails when I run it from php. Are there anyway I can get this to work? Sorry if this is OT or an obvious question. /Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Re: Using GPG in Safe Mode

2006-01-17 Thread emil
Hi Edwin! Thanks for the tips but my ISP hasn't given me root. I'm very sad to hear gpg from cli won't work under safe mode. Are there any 100% php implementations of GPG I could use? (because I guess that is the only way that is left?) /Emil If you are using gnupg comand line

[PHP] mcrypt

2006-01-17 Thread emil
, or are all those crypts using the same key for encryption and decryption? (I've read a couple pages about the crypt algorithms at wikipedia, but it didn't really help me) Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] storing passwords in $_SESSION

2005-10-10 Thread Emil Novak
way to solve the problem. Emil NOVAK LAMP Developer On 10/10/05, Dan Brow [EMAIL PROTECTED] wrote: Well, um. ya. Back to the drawing board. Save it in a cookie? On Mon, 2005-10-10 at 14:59 -0400, Kilbride, James wrote: If the session expired.. how will session hold their user id

Re: [PHP] storing passwords in $_SESSION

2005-10-10 Thread Emil Novak
Oh, just username... That's good idea. Emil NOVAK LAMP Developer On 10/10/05, Dan Brow [EMAIL PROTECTED] wrote: I was meaning just the username, not the password, still the same issue? On Mon, 2005-10-10 at 21:35 +0200, Emil Novak wrote: Yet another unsafe way... You can try to write

Re: [PHP] creating a shopping cart.

2005-10-01 Thread Emil Novak
://www.php.net/oop5 . Emil NOVAK, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Array within array

2005-09-30 Thread Emil Novak
?php $array_file = file(path/to/file); foreach($array_file as $line) { $e_array = explode(',',$line); { // do update on db for each line of array } } ? Like this? Emil Novak, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Server Time Out

2005-09-30 Thread Emil Novak
?php set_time_limit(0); // the rest of the code... ? That should work! Emil Novak, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Query - Warning: Cannot modify header information

2005-09-30 Thread Emil Novak
You can simply avoid that by buffering the output: ?php ob_start(); // your code // ... ob_end_flush(); ? or (older versions of PHP): ?php ob_start(); // your code // ... echo ob_get_contents(); ? Emil Novak, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Testing for an empty array (with null values)

2005-09-30 Thread Emil Novak
Better use is empty(), which supports array as parameter: $test = array(); if(empty($test)) // true { // code... } else // false { } Emil Novak, Slovenia, EU -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] error when open files

2005-09-28 Thread Emil Novak
If this isn't local webserver, you maybe have a problem with allow_url_fopen: http://www.php.net/manual/en/ref.filesystem.php#ini.allow-url-fopen Or if this is on your local server, you can try this: $fp = fopen(/A.zip, r); Your sincerely Emil NOVAK, Slovenia, EU

[PHP] Bar codes

2005-05-20 Thread Emil
, guess php might not work here so I might create some java application or whatever. I've never done anything like this before, do you know of any good starting points? I don't know anything about bar codes. Regards Emil -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Webmail and mime

2005-02-22 Thread Emil
pieces? I've probably just missed something obvious in www.php.net/imap or the pear mail classes. Because I guess there are a function that does this. I need this running nw. So I'm sort of desperate. If you have any ideas at all please please speak. Thanks. Regards Emil -- PHP General Mailing

Re: [PHP] A compress function?

2002-01-04 Thread Emil Rasmussen
sdf sf s fdsf sdfsdf sfsfsd sfs sf '); -- Regards Emil ps. I admit that I dont know if there is a built in function. -- Emil Rasmussen http://noget.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] $GLOBALS

2001-11-13 Thread Emil Rasmussen
an array, and it contains alle the variables from the querystring. And ['ref'] is a querystring variable. /Emil -- Emil Rasmussen http://noget.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

[PHP] informations

2001-06-22 Thread Mihailescu Emil
) and 128 Mb PC 133 memories. If do not have any of this item please send us your price list (item/price). We are interested to get from your company your prices list, including any other products and your payments and shipping methods. Please advise, Mihailescu Emil, sales Manager

RE: [PHP] What does url_rewriter.tags do?

2001-04-16 Thread Emil Rasmussen
Subject: [PHP] What does "url_rewriter.tags" do? What does it do? url_rewriter.tags is a list of HTML elements that will get the PHPSESSID added to them. Its all about sessions: http://www.php.net/manual/en/ref.session.php. Emil -- Emil Rasmussen http://www.noget.net -- P

RE: [PHP] Functions

2001-01-10 Thread Emil Rasmussen
Hi not the () after the function name function ShowMessage() { echo "Show message...\n"; } How can I call the function now? echo ShowMessage(); :: Emil --- Emil Rasmussen http://www.noget.net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-ma