Search found 6 matches

by Simon.T
Wed Dec 21, 2005 7:53 am
Forum: Javascript
Topic: Stretching a div to the full height of a table
Replies: 6
Views: 1393

Code: Select all

position:relative; background-color:#CCCCCC; min-height:100%; _height: 100%; height:100%;
slighty off track so sorry for that but whats the difference between "_height" and "height"?

Thanks,

Simon
by Simon.T
Wed Dec 21, 2005 7:42 am
Forum: Installation and Configuration
Topic: Hi - Newbie Question. Trying to configure Apache to run PHP
Replies: 13
Views: 4586

It's mostly backward compatible. A few function changes/additions. OOP has introduced a lot of new features but the PHP4 stuff should basically still work. Going from 4 to 5 should be easy enough, but if you've learned loads of PHP5 specific things you may find it confusing to drop down to PHP4. Th...
by Simon.T
Wed Dec 21, 2005 7:39 am
Forum: Regex
Topic: Regex between strings
Replies: 1
Views: 2155

never used preg_match but with "ereg" i`d use something as simple as ereg('From:.*<(.*)>',$theString,$match) $match[1] would then contain "mrname@domain.com.au" this doesn`t check for the valididty of the email address, it just extracts everything from between "<" and &...
by Simon.T
Tue Dec 20, 2005 8:52 am
Forum: Installation and Configuration
Topic: Hi - Newbie Question. Trying to configure Apache to run PHP
Replies: 13
Views: 4586

only thing i can think to say about wamp5 is that its for php5, not all web hosts are supporting this yet so make sure to check what your configuration is on the webserver your going to be using. PHP5 is quite a bit different from php4 but i`ve never looked at php5 so don`t uote me on any of this! S...
by Simon.T
Tue Dec 20, 2005 8:42 am
Forum: Installation and Configuration
Topic: Hi - Newbie Question. Trying to configure Apache to run PHP
Replies: 13
Views: 4586

I would deffinately recommend unistalling all existing services this includes apache and mysql before installing XAMPP, XAMPP has been great for me but better to install from fresh with no existing components

(Remember to back up any data first)

Simon
by Simon.T
Tue Dec 20, 2005 8:40 am
Forum: PHP - Code
Topic: Using .html pages to run .php
Replies: 15
Views: 862

<script language="php"> include("../menus/footer.php");</script> this is the last line of the code i saw when i looked at the link you posted, i`ve never had this style of coding work and not sure if that would work on anything other than an ms server? (i have no idea really!!!)...