Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 8 of 8
Search took 0.04 seconds.
Search: Posts Made By: F00Baron
Forum: JavaScript programming 03-02-2010, 02:23 PM
Replies: 1
Views: 439
Posted By F00Baron
Try it with jquery: <script...

Try it with jquery:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>

<script type="text/javascript">
function ProcessForm(){
var...
Forum: JavaScript programming 03-01-2010, 05:34 PM
Replies: 9
Views: 1,536
Posted By F00Baron
found this here:...

found this here: i-code-today.blogspot.com/2009/03/calculating-week-of-month-from-given.html
<?php
function getWeekOfTheMonth($dateTimestamp) {
$d = date('j',$ dateTimestamp);
$w = date('w',$...
Forum: General web building 02-28-2010, 03:22 PM
Replies: 2
Views: 1,362
Posted By F00Baron
$_SERVER[HTTP_HOST] also works.

$_SERVER[HTTP_HOST] also works.
Forum: PHP 02-27-2010, 11:16 PM
Replies: 1
Views: 2,181
Posted By F00Baron
Something like this? $current = date('H:m'); ...

Something like this?
$current = date('H:m');
$event_minutes = substr($event,0,2) + (60 * substr($event,3,2));
$current_minutes = substr($current,0,2) + (60 * substr($current,3,2));
...
Forum: PHP 02-27-2010, 11:03 PM
Replies: 14
Views: 1,431
Posted By F00Baron
change the html to have two(or more) input tags: ...

change the html to have two(or more) input tags:
Upload 1: <input name="file_upload[0]" type="file" size="25"/><br>
Upload 2: <input name="file_upload[1]" type="file" size="25"/><br>


Then if...
Forum: PHP 02-27-2010, 10:46 PM
Replies: 3
Views: 556
Posted By F00Baron
Try another query at the end with the SUM()...

Try another query at the end with the SUM() function:
$totals_sql = "SELECT SUM(HotelRooms) AS total_HotelRooms,SUM(SunGolf) AS total_SunGolf FROM PreRegDB ORDER BY GradYear ASC";
$totals_result =...
Forum: PHP 02-21-2010, 05:18 PM
Replies: 2
Views: 1,121
Posted By F00Baron
Re: the issue of not getting a 404: Here's what...

Re: the issue of not getting a 404:
Here's what I use:
header("HTTP/1.0 404 Not Found");
exit();
exit() makes sure nothing else goes out after the 404 header.
Also you must ensure that...
Forum: JavaScript programming 02-20-2010, 09:57 PM
Replies: 5
Views: 1,009
Posted By F00Baron
If you can manage to give the elements in the two...

If you can manage to give the elements in the two sections similar id's you can use the id of the hovered element to get the id of the element you need to show. I did something similar but with...
Showing results 1 to 8 of 8

 
Forum Jump

All times are GMT +1. The time now is 08:06 PM.