Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Views: 292
Posted By tempz
Try this: http://shoutbox.widget.me/

Try this: http://shoutbox.widget.me/
Showing results 1 to 25 of 436

 
Forum Jump

All times are GMT +1. The time now is 07:25 AM.