Re: [PHP] php parsing and db content

2006-05-10 Thread Chris
Schalk wrote: Greetings All, I have the following problem. I load certain links and breadcrumbs from the database into a external .php file which I include on various pages within the site. Due to this I have defined a constant '_root' and precede all links with this to ensure that the links

Re: [PHP] php parsing and db content

2006-05-10 Thread Chris
Chris wrote: Schalk wrote: Greetings All, I have the following problem. I load certain links and breadcrumbs from the database into a external .php file which I include on various pages within the site. Due to this I have defined a constant '_root' and precede all links with this to ensure

Re: [PHP] php parsing and db content

2006-05-10 Thread Schalk
Chris wrote: Chris wrote: Schalk wrote: Greetings All, I have the following problem. I load certain links and breadcrumbs from the database into a external .php file which I include on various pages within the site. Due to this I have defined a constant '_root' and precede all links with t

[PHP] getting $_GET params from iFrame window to parent

2006-05-10 Thread blackwater dev
Hello all, I have a small site which provides search functionalities. My search sites are framed in my clients sites via iframe. I have a client who would like to put the search form somewhere else on their site (it is currenly all on my page within the iframe) and then call their search page t

Re: [PHP] php parsing and db content

2006-05-10 Thread Schalk
Chris wrote: Chris wrote: actually if it's only one variable, this might do it for you: $content = str_replace('', _root, $content); but that's still a bad way to do this. Chris, This works: $breadcrumb = $row_pathway['pathway']; $breadcrumb = str_replace('', _root, $breadcrumb); ec

Re: [PHP] file Upload - checking file size before uploading

2006-05-10 Thread Wolf
True, but it checks it at the first attempt to upload, not when the file is done or partially uploaded. Granted, not what the OP asked for exactly, but better then what he has now and better then spending more time looking... Wolf Chris wrote: > Wolf wrote: >> In your form uploading script: >> #

Re: [PHP] php parsing and db content

2006-05-10 Thread Chris
Schalk wrote: Chris wrote: Chris wrote: actually if it's only one variable, this might do it for you: $content = str_replace('', _root, $content); but that's still a bad way to do this. Chris, This works: $breadcrumb = $row_pathway['pathway']; $breadcrumb = str_replace('', _root, $

[PHP] Parsing images

2006-05-10 Thread Dotan Cohen
Hey all, it is possible to parse capcha's in php? I'm not asking how to do it, nor have I any need, it's just something that I was discussing with a friend. My stand was that ImageMagik could crack them. She says no way. What are your opinions? Thanks. Dotan Cohen http://what-is-what.com

RE: [PHP] Parsing images

2006-05-10 Thread Dan Harrington
Using ImageMagick, ray tracing algorithms, an OCR library, and fourier transforms, I bet that you could parse Capchas. Dan -Original Message- From: Dotan Cohen [mailto:[EMAIL PROTECTED] Sent: Thursday, May 11, 2006 12:29 AM To: PHP General (E-mail) Subject: [PHP] Parsing images Hey all,

<    1   2