[PHP] Conceptional question on dealing with different languages

2006-02-22 Thread janbro
Hello list, it has been a while since I've posted the last time, but now I need your help/ opinion again. I'm re-designing an existing page for an online shop which is supposed to be used in different languages. The former design was just a plan echo for an output since the page was only intended

Re: [PHP] Comparing of string

2006-01-04 Thread janbro
don't get it. thanks for your help so far janbro Jeremy Privett schrieb: > janbro wrote: > >> Hello List >> >> I've got the following little code: >> >>$formCheck= $_GET['formCheck']; &

Re: [PHP] Comparing of string

2006-01-03 Thread janbro
. thanks but that's not it. Jon Westcot schrieb: > Hi JanBro: > > Quick guess: are the strings the same length? I've been bitten many > times by string comparisons that appear to be identical but which fail due > to trailing spaces, other "invisible" (i.e

[PHP] Comparing of string

2006-01-03 Thread janbro
osed to be What I don't get is, why isn't the if statement true? Shouldn't it show test as well? Where is my mistake? I run PHP 5.1.1 on Windows. On my Win PHP 5.0 this code works proper, but not here ?!? thx JanBro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Question to eregi Syntax

2005-07-07 Thread janbro
thx, that's what I've figured. but looking for ^ with any search engine won't give you anything useful. thx JaNbro M. Sokolewicz schrieb: janbro wrote: Hi List, my research hasn't turned anything useful up. Probably 'cause I don't have enough info. I'v

[PHP] Question to eregi Syntax

2005-07-07 Thread janbro
Hi List, my research hasn't turned anything useful up. Probably 'cause I don't have enough info. I've been playing around with the ereg function. What I was wondering is what is the ^ for like in the below example? ereg('[^[:space:]a-zA-Z0-9_.-]{1,}', $nam

[PHP] Re: send email at certain hour

2005-06-25 Thread janbro
ething like cd\programs\php php c:\webpages\php\timer.php janbro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Question to example from manual

2005-06-16 Thread janbro
autsch, that's true, sorry for disturbing thx Jason janbro Jason Barnett schrieb: > janbro wrote: > >> Hi, I've been working on this example and copied it in my >> webroot, it doesn't give me an output. Does anybody know why? >> "System" WinX

[PHP] Re: Question to example from manual

2005-06-16 Thread janbro
autsch, that's true, sorry for disturbing thx Jason janbro Jason Barnett schrieb: > janbro wrote: > >> Hi, I've been working on this example and copied it in my >> webroot, it doesn't give me an output. Does anybody know why? >> "System" WinX

[PHP] Question to example from manual

2005-06-16 Thread janbro
Hi, I've been working on this example and copied it in my webroot, it doesn't give me an output. Does anybody know why? "System" WinXP Apache 2.0.50 php 5.0.3 thx janbro Example 7-6. Static variables with recursive functions -- PHP General Mailing List (http://www.php.

[PHP] Re: Exporting to MS Word or Excel

2005-06-05 Thread janbro
used it myself janbro Miguel Guirao schrieb: > Hi!!! > > Are there any chances that I could export a dynamic created web page into MS > Word or Excel? > I know this can be done with PDF!! > > I'm using LAMP!! > > --- > Miguel Guirao Ag

Re: [PHP] PHP 5 Question about OO

2005-06-01 Thread janbro
Alright thanks, I see there is a workaround to cope with that. I've never worked with __autoload, but will sure give it a look. I don't realy feel this satisfying, but hey I'm thankful to have oo at all. janbro Marcus Bointon schrieb: > On 1 Jun 2005, at 09:01, janbro wr

Re: [PHP] PHP 5 Question about OO

2005-06-01 Thread janbro
Okay, I see there is a workaround but nothing realy satisfying, but I'm not hoing to complain, I'm hapy to have oo in PHP at all. I never worked with __autoload so far, but I will give it a try and check it out thx janbro Marcus Bointon schrieb: > On 1 Jun 2005, at 09:01,

[PHP] PHP 5 Question about OO

2005-06-01 Thread janbro
} Now my question, is it possible to skip that require/ include part? In Java you don't need that, as class and file names are identical. thx janbro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Code Check fixed

2005-05-30 Thread janbro
Ok, thx, I've got it done. Dumb mistake, the user didn't have rights to delete, it's as simple as that. My trials thru the command line where as root thx guys janbro Richard Lynch schrieb: > What you are doing wrong is ignoring the error messages MySQL is storing > for

[PHP] Code Check

2005-05-30 Thread janbro
;user')"; > echo "$conDiesen Auf ERFOLG TESTEN! LÖSCHT ER WAS ER SOLL? > $query"; > print $con->query($query); > $con->query("OPTIMIZE TABLE LoginTracker "); > >

[PHP] Re: mysql_connect does not connect

2004-09-14 Thread JanBro
gt;4.1 Versions, but you better look that up, I might be wrong there. Hope this helps. By the way, can you connect thru PHPMyAdmin? If not you might have that old version password problem. JanBro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mysql_connect does not connect

2004-09-14 Thread JanBro
gt;4.1 Versions, but you better look that up, I might be wrong there. Hope this helps. By the way, can you connect thru PHPMyAdmin? If not you might have that old version password problem. JanBro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mysql_connect does not connect

2004-09-14 Thread JanBro
gt;4.1 Versions, but you better look that up, I might be wrong there. Hope this helps JanBro -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] finding string in string

2004-09-14 Thread JanBro
Hi, I've got the following little function: public function addText($pdf, $xPos, $yPos, $schriftgroese, $text){ /** * @description: Returning Text with automatic linebreak */ $heuhaufen = $text; for ($i=0; $i < substr_count($heuhaufen, "\n") + 1; $i++){ $posStr= stripos ($heuhaufen,"\n");

[PHP] Variable variables

2004-08-28 Thread JanBro
do I receive my variables which have the form $a_123 or $a_124[]. Is there a workaround for PHP5 or PHP in general? Who do I make $data = $_REQUEST['a_123'] work ??? I'd hate to set global variables to on, as I'm dealing with sensitive data. Thx JanBro -- PHP General Ma

[PHP] Question about the manual content

2004-02-18 Thread janbro
p {margin: 0px}Hi List,I have a little problem I posted a couple of times now. The PHP Manual gave me the idea that the clibpdf library seemed to work with php. Well I tried some things they didn't seem to work.Well I thought I'd ask the list, maybe somebody could help me out. But what  a though

[PHP] cpdf_import_jpeg() doesn't show input

2004-02-16 Thread janbro
Hi, I've got ClibPDF working soemhow, Only the cpdf_import_jpeg() function does not produce any output at all. There is no error message. I called the function like this: pdf = cpdf_open(0); cpdf_page_init($cpdf, 1, 0, 842, 594, 1.0); cpdf_import_jpeg($pdf,"image.jpg",10,10,0,300,100,0,0,1); cp