...to find the actual email address, I'm using this regexp:
<?([^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+(?:\.[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+)*\@[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+(?:\.[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+)+)>?
I don't want to get into an RFC822 argument here, but I suppose...
...to find the actual email address, I'm using this regexp:
<?([^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+(?:\.[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+)*\@[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+(?:\.[^\x00-\x20()<>@,;:\\".[\]\x7f-\xff]+)+)>?
I don't want to get into an RFC822 argument here, but I suppose...
Exactly what I wanted! I completely forgot about line-height. I had links with borders around them, and the top border was overlapping the text on the line above. Line-height solved it perfectly.
Many thanks!
______________________
George
Thanks. I thought that might be the case. So no way of shifting it using margin? I guess I'll have to use relative positioning or something.
______________________
George
Thanks for the confidence - it's nice to know it might not be me being thick this time! I'll keep my eyes open for any news.
Case closed for now.
______________________
George
Good advice, I'm sure. I'm actually running 4.3.8 already with a different Apache installation.
My reason for all this palaver is firstly to check my scripts are compatible with PHP5, and secondly to branch off and extend some functionality using PHP5's new OOP features.
I would like to run...
Sorry for the delay - I've been away with work.
So I compiled cpdflib, and tried to work with it for a bit.
The problems are many - I have loads of Bezier curve and polygon drawing routines, and I need to embed some fonts in the PDFs. Changinf to cPDFlib is going to be an absolute nightmare...
Well, I've got somewhere at least.
I downloaded the PECL wrapper for pdflib, and installed it pointing to /sw/ as my directory for pdflib. It generated a file called pdf.so.
With a bit of shifting things around, I discovered that if I put pdf.so in the path...
Thanks very much for that slepnir - I'm glad it wasn't just me going mad!
I'd like to ask two further questions. Firstly, is there any way I can compile PHP5 with both GD and pdflib support? Any trick, or short cut, or whatever? Would it work to install the pdflib extension from PECL? I don't...
Hi,
I would very much like some help with compiling PHP 5 on my machine. It's all gone well so far, with one small problem.
I am running Mac OS X 10.3.4. I downloaded the first true release of PHP 5. Then I investigated the various libraries I need to include in the compilation. I found that I...
OK.
Here's my pattern so far:
$pattern = '/ \< ([[:alnum:]]+) \> ( (?>[^<>]+) | (?R) )* \< \/ \1 \> /Xx';
What I want to match is all the text between an opening and closing HTML-like tag. I want to allow for nested tags, so the regexp should match up until where the opening tag is...
I'm using XP Home edition. When I try to start windows I get to the blue welcome screen and then the computer bleeps and that's it. The mouse doesn't freeze but nothing else happens. I get the same result in safe mode. I've also tried last known good configuration and tried changing the BIOS to...
thanks for the quick responses - I'm working in PHP and I've replaced 25 lines of stupid array loops with one MySQL query - NICE!
______________________
George
Got it - thanks a lot!
SELECT a.forum_id FROM table1 a LEFT JOIN table2 b USING (forum_id) WHERE b.forum_name is NULL
it works - does it look correct?
______________________
George
Hi,
If I have two tables, which both have a column named 'forum_id', how can I find a list of all the forum_id's which appear in table 1 but not in table 2?
eg:
table 1
forum_id forum_name
1 test
2 forum
3 george
4...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.