Forum: PHP Mar 24th, 2008 |
| Replies: 3 Views: 673 I have decided to format my windrive and install a fresh copy of xp. Now everything works normal again, though I'm still not sure what caused this problem. Consider this topic thus solved |
Forum: PHP Mar 18th, 2008 |
| Replies: 3 Views: 673 I run apache only as a local webserver, shut off from the outer world. And also use it in conjunction with php as a testing environment, mainly for educational purpouses.
It is only recently that... |
Forum: PHP Mar 18th, 2008 |
| Replies: 3 Views: 673 Hello all,
A few days ago I tried to use a mail script and recieved an error:
"Warning: mail() [function.mail]: Failed to connect to mailserver at "localhost" port 25....."
Which was wierd... |
Forum: PHP Jul 19th, 2007 |
| Replies: 16 Views: 7,890 Could it be that the double quotes are conflicting |
Forum: HTML and CSS Jul 13th, 2007 |
| Replies: 8 Views: 1,767 The reason the first list gets screwed is because 'none' is not a valid property for the margin and padding attributes, use 0px or just 0 instead ;)
My gues is that the floated divs in the... |
Forum: PHP Jul 5th, 2007 |
| Replies: 17 Views: 2,688 or you could just block the specific port your server uses |
Forum: HTML and CSS Jul 5th, 2007 |
| Replies: 9 Views: 1,238 something wrong with the language files or fonts? |
Forum: PHP Jul 5th, 2007 |
| Replies: 17 Views: 2,688 Don't think this is possible, since php is a server-sided scripting language. You will need the Apache server and php parser which can be downloaded here:
Apache HTTP server... |
Forum: HTML and CSS Jul 5th, 2007 |
| Replies: 3 Views: 5,929 can you post an example of your css code? It can be caused by missing closing tag, and since IE is quitte forgivable to this, it doesn't give as much problems.
also, the html for the table looks a... |
Forum: HTML and CSS Jul 5th, 2007 |
| Replies: 7 Views: 4,572 Again, I'm afraid that won't be possible with just html.
You can put a mailto link on the bottom of the page that opens a new mail window where they just write you an email message, you can ask... |
Forum: Community Introductions Jul 4th, 2007 |
| Replies: 2 Views: 623 Hey everyone.
I have been registered here now for some time, but haven't really visited the forum much.
I have a been working with html and css now for a year and amased some experience with it... |
Forum: HTML and CSS Jul 4th, 2007 |
| Replies: 7 Views: 4,572 I am not strong on this topic, but I'm afraid that your comment form won't be verry succesfull without MySQL. The database is needed to store various entered comment. Also html is used to creat... |
Forum: HTML and CSS Jul 4th, 2007 |
| Replies: 3 Views: 1,224 little typo there.
www.w3schools.com ;) |
Forum: HTML and CSS Jul 3rd, 2007 |
| Replies: 10 Views: 3,046 |
Forum: Network Security Jun 28th, 2007 |
| Replies: 1 Views: 1,749 Hy,
I have seached this forum but have not come across any similar topic, so I hope i'm not repeating anything here.
Lately I have been playing around a bit with the apache server, and aquired... |
Forum: HTML and CSS Jun 23rd, 2007 |
| Replies: 4 Views: 1,908 You could also try the display property in css, I haven't tried myself yet but by using it you can make your elements behave like most other elements.
for example display: inline applied to a list... |
Forum: HTML and CSS Jun 23rd, 2007 |
| Replies: 4 Views: 1,908 You could also try the display property in css, I haven't tried myself yet but by using it you can make your elements behave like most other elements.
for example display: inline applied to a list... |
Forum: Site Layout and Usability Jun 16th, 2007 |
| Replies: 12 Views: 3,306 well i think i have more or less the same problem.
i have made a picture to be displayed on the background of the entire site but it didn't work when i included the code in an external stylesheet.... |
Forum: HTML and CSS Jun 14th, 2007 |
| Replies: 10 Views: 3,046 I am slowly becomming aware of the limitations of css, and realizing that css can only do as much.
I have found a workaround for my problem and got all 3 columns to stretch equaly in height.
By... |
Forum: HTML and CSS Jun 13th, 2007 |
| Replies: 5 Views: 1,576 The reason for your floating tables to show different on every page is probably due to the fact that float in some way works a bit the same as position: relative and top: 0. So if there is something... |
Forum: HTML and CSS Jun 13th, 2007 |
| Replies: 10 Views: 3,046 For some reason the stylesheet containing box layout isn't applied in IE.
I mainly use firefox when designing, so it would be best to view the page in that one, but the idea is to also get it... |
Forum: HTML and CSS Jun 13th, 2007 |
| Replies: 10 Views: 3,046 I had not given a link because I hadn't put it online yet, but I have now.
http://www.test.fietspoolen.be/new/newdesign_template.html
The red borders belong to the mainwrapper, and i have given... |
Forum: HTML and CSS Jun 8th, 2007 |
| Replies: 10 Views: 3,046 sorry,
the mainwrapper holds everything, the banner is what it says.
Alpha and Beta are the navbars (left and right) and content is the middle contect box.
ghost is a seperator that sits at... |
Forum: HTML and CSS Jun 7th, 2007 |
| Replies: 10 Views: 3,046 I was recently given the task of redoing our website with a new, more fresh looking design. It's a 3 column, fixed width, centered layout with a header and navbars on both sides and a that extend... |
Forum: PHP Feb 15th, 2007 |
| Replies: 0 Views: 651 lately I have been experimenting a bit with print and came up with this:
$var1 = 'x'
print $var1;
$var2 = 'y';
print "when you calculate:" . $var1 "-" . $var2 . "=" . ($var1 - $var2);
... |
Forum: PHP Feb 14th, 2007 |
| Replies: 7 Views: 3,874 The site is deploying the same principle as inline frames
config.php:
foreach ($_GET as $key => $value) {
if ($key == 'dir') {
$dir = $value;
}
else {
$var =... |
Forum: PHP Feb 13th, 2007 |
| Replies: 4 Views: 1,415 in reply to my previous post:
I would like to add that this calculation would require for the specific date to be retrieved every year again.
so this year, retrieving date for the 2nd monday... |
Forum: PHP Feb 13th, 2007 |
| Replies: 4 Views: 1,415 great help, thanks.
But I'm afraid I've hit another roadblock
mktime only allows Hour, Minute, second, Month, day and Year as arguments, but no Week.
I want to retrieve the first day of the... |
Forum: PHP Feb 12th, 2007 |
| Replies: 7 Views: 3,874 I'm sorrr, I'l give you an example
some pages on the website contain dates and schoolyear references.
To make these dynamic I have added a block of code to retrieve the ongoin schoolyear, and it... |
Forum: PHP Feb 12th, 2007 |
| Replies: 7 Views: 3,874 I'm sorrr, I'l give you an example
some pages on the website contain dates and schoolyear references.
To make these dynamic I have already added a block of code to get the current schoolyear, and... |
Forum: PHP Feb 12th, 2007 |
| Replies: 7 Views: 3,874 sorry to post another problem so soon after my first one, but this has been bothering me for some time now.
Sometimes I can't get the echo funtion to work
I already use the $root succesfully in... |
Forum: PHP Feb 12th, 2007 |
| Replies: 4 Views: 1,415 Hi I'm working on a site that involves alot of date references. I have already implemented some PHP scripting and includes to make the site more dynamic, but would like to do the same with the date... |
Forum: Windows NT / 2000 / XP Sep 28th, 2006 |
| Replies: 15 Views: 19,433 well it would seem that way, since the account that installed the driver(s) was an admin he would expect it to be an admin on every logon, atleast that my gues.
btw I didn't mean to bust your... |
Forum: Windows NT / 2000 / XP Sep 27th, 2006 |
| Replies: 15 Views: 19,433 but nero and mobo drivers aren't really the same eh ;)
the drivers will load on any account but it's just that the account where I installed them had admin rights, then I degraded it to power user... |
Forum: Community Introductions Sep 27th, 2006 |
| Replies: 3 Views: 1,145 I copied the article: 'PC Protection - How To Avoid Infections (http://www.thekoss2.org/forum/viewtopic.php?t=3680&start=0&postdays=0&postorder=asc&highlight=)' and posted it on our forum, with a... |
Forum: Windows NT / 2000 / XP Sep 26th, 2006 |
| Replies: 15 Views: 19,433 right, I'm not sure about your policies on bumping a post but here it goes.
So a few days ago I say the 31 day count so me thinks: time for a fresh install. So I did, and on the first logon I... |
Forum: Community Introductions Sep 26th, 2006 |
| Replies: 3 Views: 1,145 Hello everyone. I have just registered on this site, about time to. I was thinking about this for some time as I have been reviewing some blogs featured on the main page and read some of the tech... |