Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 500
Search took 1.06 seconds.
Search: Posts Made By: me'
Forum: PHP 02-26-2005, 04:21 PM
Replies: 3
Views: 6,695
Posted By me'
After a bit more messing around, everything seems...

After a bit more messing around, everything seems to be now working. Thanks for all your help.
Forum: PHP 02-24-2005, 07:21 PM
Replies: 3
Views: 6,695
Posted By me'
Problems trying to run the PHP CLI

OS: SuSE Linux 9.2
Server: Apache 2 (not that this should matter in this instance)

Having compiled a version of PHP 5.0.3 from source, I'm now having trouble trying to run the CLI. An executable...
Forum: PHP 07-23-2004, 03:16 PM
Replies: 9
Views: 1,488
Posted By me'
Well it depends on what your site needs to do. If...

Well it depends on what your site needs to do. If you have any kind of online store, you'll need a serverside language. If you want a user to be able to log in, you'll need a serverside language. If...
Forum: HTML & CSS 07-12-2004, 10:00 PM
Replies: 13
Views: 1,607
Posted By me'
If you must include them, cover them in CSS (or...

If you must include them, cover them in CSS (or JS, if you're using it with <script>) comments, so poor CSS parsers don't struggle:
<style type="text/css">
/* <!-- */
css rules
/* --> */
</style>
Forum: Geek News and Humour 07-06-2004, 06:52 PM
Replies: 33
Views: 5,641
Posted By me'
I can't do anything about the 'feel', but be sure...

I can't do anything about the 'feel', but be sure to check out the themes list (http://update.mozilla.org/themes/?application=firefox) (well, the main one at least, it's only one of many I suppose)...
Forum: PHP 06-09-2004, 04:55 PM
Replies: 4
Views: 1,390
Posted By me'
That looks like it's working... thanks very much!!

That looks like it's working... thanks very much!!
Forum: PHP 06-09-2004, 04:45 PM
Replies: 4
Views: 1,390
Posted By me'
Regex help - matching nested tags without matching adjacent ones

Hi. I'm in need of a regular expression that will match nested <abbr> tags, then delete any which are children of other abbr tags. For example, if my <abbr>ising algorithm turns up this:...
Forum: Geek News and Humour 05-26-2004, 06:48 PM
Replies: 21
Views: 3,021
Posted By me'
'Tango', it's a soft drink, as you call it. The...

'Tango', it's a soft drink, as you call it. The popular tagline to their adverts was 'You know when you've been Tango'd'.

Not a company but another example of an abbreviation making verb status -...
Forum: PHP 05-24-2004, 07:54 PM
Replies: 0
Views: 1,519
Posted By me'
Passing arrays to an XSLT stylesheet.

Hi. I can pass variables to a XSLT stylesheet:$xh = xslt_create();
$files = array (
'/_xsl' => implode('', file('file.xsl')),
'/_xml' => implode('', file('file.xml'))
);
$params = array (
...
Forum: General web building 05-18-2004, 06:23 PM
Replies: 10
Views: 1,358
Posted By me'
By the way, please read our Posting Guidelines...

By the way, please read our Posting Guidelines (http://www.codingforums.com/postguide.htm) before posting in the future. Thanks :)
Forum: HTML & CSS 05-18-2004, 06:12 PM
Replies: 1
Views: 668
Posted By me'
First off: why: when using absolute positioning,...

First off: why: when using absolute positioning, the bottom and left co-ordinates are taken as measurements in respect to the viewport, not the document.

Now, a fix. It shoult be simple: just put...
Forum: HTML & CSS 05-18-2004, 05:04 PM
Replies: 10
Views: 1,286
Posted By me'
Well, actually IE supports the PNG format, just...

Well, actually IE supports the PNG format, just not 24-bit transparency on said images.
Forum: XML 05-18-2004, 03:19 PM
Replies: 2
Views: 1,952
Posted By me'
Come again? All XHTML is is markup tags! Where...

Come again? All XHTML is is markup tags! Where did you hear that? Are you mistaking 'markup tags' for something else, perhaps 'presentational markup tags'?
Forum: HTML & CSS 05-18-2004, 03:04 PM
Replies: 10
Views: 1,286
Posted By me'
You've set 'height: 100%' on the main div, which...

You've set 'height: 100%' on the main div, which makes it stretch 100% of the viewport, and never any more. If the content stretches over the height of one viewport's worth, it will overflow. Try...
Forum: General web building 05-18-2004, 02:53 PM
Replies: 1
Views: 801
Posted By me'
Could it be something to do with the periods...

Could it be something to do with the periods after some of the IP addresses? Never looked into DNS myself, but it's worth a try...
Forum: HTML & CSS 05-17-2004, 05:09 PM
Replies: 7
Views: 1,699
Posted By me'
Plus, <div style="position: absolute; width: 267;...

Plus, <div style="position: absolute; width: 267; height: 295; left: 30; top: 70; overflow:auto;>You need a closing quote, ", to close that attribute before the tag ends.
Forum: HTML & CSS 05-17-2004, 05:02 PM
Replies: 1
Views: 965
Posted By me'
Stylesheet not showing up in Opera or Safari

page: http://xmouse.ithium.net
stylesheet: http://xmouse.ithium.net/img/xmouse.css

Well, the title summed that one up. I'm not sure why exactly this is happening, although I have a feeling it's...
Forum: HTML & CSS 05-17-2004, 04:52 PM
Replies: 11
Views: 2,247
Posted By me'
But that's still a list, despite hows it's...

But that's still a list, despite hows it's presented. You could manipulate the CSS so all the links appear on one line, but at heart it's still a list of options.
Forum: HTML & CSS 05-14-2004, 06:09 PM
Replies: 11
Views: 2,247
Posted By me'
Yes it is, it's a few objects, one after another,...

Yes it is, it's a few objects, one after another, hence it's a list. Most navigation bars, if not all, are lists.
Forum: HTML & CSS 05-13-2004, 07:11 PM
Replies: 11
Views: 2,247
Posted By me'
You have there quite a lot of links, almost a...

You have there quite a lot of links, almost a list of links, wouldn't you say? Then why not mark up the list of links as a list? (Sorry if this seems patronising, I can have a tendancy to...
Forum: HTML & CSS 05-13-2004, 07:05 PM
Replies: 19
Views: 1,744
Posted By me'
Well, everyone I suppose.Yeah, but I prefer to...

Well, everyone I suppose.Yeah, but I prefer to offer a better solution if the basic, cheap and cheerful solution has already been offered.
Forum: HTML & CSS 05-13-2004, 05:51 PM
Replies: 13
Views: 1,629
Posted By me'
Good point. Actually as I read this, I realise...

Good point. Actually as I read this, I realise I'm actually exposing... what... one url to the 'outside world', as WordPress uses basically one page, index.php to handle all the showing of blog...
Forum: General web building 05-13-2004, 05:36 PM
Replies: 7
Views: 873
Posted By me'
Couldn't you could code your pages to encompass...

Couldn't you could code your pages to encompass a possible textsize increase? That's a basic accesibility guideline.
Forum: HTML & CSS 05-13-2004, 05:34 PM
Replies: 13
Views: 1,629
Posted By me'
Why not? It's easier on me that way, and like you...

Why not? It's easier on me that way, and like you said, the file extension doesn't matter.


(when providing metadata through php's header(), of course)
Forum: HTML & CSS 05-13-2004, 05:31 PM
Replies: 19
Views: 1,744
Posted By me'
Well, don't you think more appropriate markup...

Well, don't you think more appropriate markup would be this?<div id="somelinks">
<h2>Some Links</h2>
<ul>
<li><a>Hello World</a></li>
...
</ul>
</div>Then some simple...
Showing results 1 to 25 of 500

 
Forum Jump

All times are GMT +1. The time now is 05:22 AM.