Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 18
1
2
3
11
>
Last
»
Showing results 1 to 25 of 436
Search took
0.48
seconds.
Search:
Posts Made By:
tempz
Forum:
HTML & CSS
03-17-2013, 11:27 PM
Replies:
7
Passing PHP variables into html tags
Views:
284
Posted By
tempz
You must make sure the extension is dot php else...
You must make sure the extension is dot php else users can view php code because it will display as text.
Forum:
HTML & CSS
03-17-2013, 03:12 AM
Replies:
7
Possible to stop page jumping when # link is used?
Views:
276
Posted By
tempz
<a href="javascript:void(0)"...
<a href="javascript:void(0)" onclick="Index">
Forum:
PHP
03-17-2013, 02:57 AM
Replies:
2
Calculating Hours
Views:
217
Posted By
tempz
$from = '09:30'; $to = '14:00'; ...
$from = '09:30';
$to = '14:00';
$total = strtotime($to) - strtotime($from);
$hours = floor($total / 60 / 60);
$minutes = round(($total - ($hours * 60 * 60)) / 60);
...
Forum:
HTML & CSS
03-17-2013, 02:52 AM
Replies:
7
Passing PHP variables into html tags
Views:
284
Posted By
tempz
The file is .php it can't be read by going to the...
The file is .php it can't be read by going to the url www.example.com/connect.php
Forum:
HTML & CSS
03-16-2013, 10:40 PM
Replies:
7
Passing PHP variables into html tags
Views:
284
Posted By
tempz
<audio controls> <source src="<?php echo...
<audio controls>
<source src="<?php echo $audio; ?>" type="audio/mpeg"/>
</audio>
<h2> <?php echo $title; ?></h2>
Do you mean this?
Forum:
HTML & CSS
03-16-2013, 10:26 PM
Replies:
2
how to create this type of front page
Views:
271
Posted By
tempz
To create a website like the one you required a...
To create a website like the one you required a clone of you'll need to know:
PHP
SQL
jQuery
JavaScript
CMS's
Forum:
HTML & CSS
03-08-2013, 12:12 AM
Replies:
6
scrolling image
Views:
239
Posted By
tempz
something like this? ...
something like this?
http://jsfiddle.net/54fUH/
Forum:
HTML & CSS
03-08-2013, 12:06 AM
Replies:
4
how to check images on if statement?
Views:
227
Posted By
tempz
$file = '/path/to/foo.txt'; // 'images/'.$file...
$file = '/path/to/foo.txt'; // 'images/'.$file (physical path)
if (file_exists($file)) {
echo "The file $file exists";
} else {
echo "The file $file does not exist";
}
If the...
Forum:
JavaScript programming
03-07-2013, 11:57 PM
Replies:
3
random image that has link and rollover?
Views:
259
Posted By
tempz
You want it to change the image or make it so...
You want it to change the image or make it so when a user rolls over it displays a image?
Forum:
HTML & CSS
03-02-2013, 01:30 AM
Replies:
2
Creating a IMG bullet list in CSS
Views:
303
Posted By
tempz
Hello, Quick question, is...
Hello,
Quick question, is http://nopeople.com/design/index.html your website?
Forum:
PHP
02-27-2013, 06:21 PM
Replies:
6
Getting Countries IP
Views:
278
Posted By
tempz
Take a look at:...
Take a look at: http://ipinfodb.com/ip_location_api.php
Forum:
PHP
02-21-2013, 04:03 PM
Replies:
2
Auto page generate
Views:
217
Posted By
tempz
Check out,...
Check out, http://www.awesomephp.com/index.php?Membership
or http://www.webestools.com/scripts_tutorials-code-source-14-members-area-system-in-php-mysql-members-users-system-area-log-sign.html
Forum:
HTML & CSS
02-16-2013, 04:10 PM
Replies:
5
Correct Page Width
Views:
275
Posted By
tempz
<!doctype html> <html> <head> ...
<!doctype html>
<html>
<head>
<title></title>
<style type="text/css">
.wrapper { width: 960px; margin: 0 auto; background-color: #cccccc; }
body { margin: 0; padding: 0...
Forum:
HTML & CSS
02-13-2013, 02:46 AM
Replies:
4
Resolved
html input type url - purpose
Views:
277
Posted By
tempz
You can only enter urls, this is a HTML5 input...
You can only enter urls, this is a HTML5 input type.
http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_input_type_url
Forum:
HTML & CSS
02-13-2013, 12:13 AM
Replies:
13
Form background-color change on focus
Views:
662
Posted By
tempz
This should work. #Field3:focus...
This should work.
#Field3:focus {background: #colorhexcode;}
Forum:
HTML & CSS
02-10-2013, 01:56 AM
Replies:
3
How to make login page design function
Views:
395
Posted By
tempz
Try this: ...
Try this:
https://gist.github.com/ircmaxell/1118405
It's always being updated.
Forum:
HTML & CSS
02-07-2013, 05:42 PM
Replies:
10
Putting an image in the header corner
Views:
378
Posted By
tempz
Take a look at:...
Take a look at: http://andrewpeace.com/css-top-right-corner-div.html
Forum:
HTML & CSS
02-07-2013, 04:46 PM
Replies:
3
Have problems linking CSS style to div class
Views:
146
Posted By
tempz
<div class="hello"></div> div.hello {styles}...
<div class="hello"></div>
div.hello {styles}
<div id="hello"></div>
#hello {styles}
Class is a dot in css scripting
ID is a hash tag.
Forum:
General web building
02-07-2013, 01:54 AM
Replies:
20
What is the best way to include another html file?
Views:
2,771
Posted By
tempz
Best method using what the other users have...
Best method using what the other users have posted above mine.
You can use a iframe but they are very old and kind of useless when it comes to including main features of a website.
Best way to...
Forum:
HTML & CSS
02-07-2013, 01:51 AM
Replies:
2
New here :S
Views:
205
Posted By
tempz
Auto updating comments? ...
Auto updating comments?
http://www.9lessons.info/2009/06/comment-system-with-jquery-ajax-and-php.html
PHP login via facebook/twitter
...
Forum:
HTML & CSS
02-07-2013, 01:46 AM
Replies:
3
Code to use in form to disable the submit button
Views:
277
Posted By
tempz
Placing the JavaScript after end body tag only...
Placing the JavaScript after end body tag only allows the page to render quicker, because you wont have any JavaScript processing before the page as loaded.
Forum:
PHP
02-01-2013, 01:54 PM
Replies:
1
New line after echoing .$row['column'];
Views:
251
Posted By
tempz
This put it into a table. <?php ...
This put it into a table.
<?php
$db_host = 'localhost';
$db_user = 'user';
$db_pwd = 'pass';
$database = 'database';
$table = 'table';
Forum:
PHP
02-01-2013, 01:32 AM
Replies:
5
Auto generate a the thumbnail page
Views:
348
Posted By
tempz
Be more descriptive, plus fix your server. ...
Be more descriptive, plus fix your server.
Oops! Google Chrome could not connect to www.digifind-it.com
Forum:
PHP
01-23-2013, 04:28 PM
Replies:
4
quick help with preg_replace?
Views:
179
Posted By
tempz
<?php function myUrlEncode($string) { ...
<?php
function myUrlEncode($string)
{
return urlencode(str_replace( '+' , ' ' , $string ));
}
?>
Forum:
HTML & CSS
01-23-2013, 03:31 PM
Replies:
4
doing a chat box using html
Views:
292
Posted By
tempz
Try this: http://shoutbox.widget.me/
Try this: http://shoutbox.widget.me/
Showing results 1 to 25 of 436
Page 1 of 18
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
07:25 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.