* User Info

 
 
Welcome, Guest. Please login or register.
Did you miss your activation email?

* Who's Online

  • Dot Guests: 3
  • Dot Spiders: 1
  • Dot Hidden: 0
  • Dot Users: 0
  • Dot Users Online:
  • user Yahoo!

* Board Stats

  • stats Total Members: 1213
  • stats Total Posts: 284
  • stats Total Topics: 123
  • stats Total Categories: 6
  • stats Total Boards: 18
  • stats Most Online: 45

* Most Thanked

K3YL3SS K3YL3SS
Thanks: 6
Hillso
Thanks: 2
dharprog
Thanks: 1
admin admin
Thanks: 0
easternBrain
Thanks: 0

xx Job Offer on ThePHPForum | 29 Jan 10

18:28:56 by K3YL3SS | Views: 102 | Comments: 3

You're Hired if you want the job :)

Hi, we have a paying job for you if you are available. We want to know if you are available to work for $$$ we are looking to hire you to test out the forum, answer php questions, post tutorials, talk about PHP and keep the conversations going here.

We will pay you 50 cents a post, start there and show us what you can do on the forum. We may even want to hire you for $20 an hour to provide online php training if you prove you're good enough!

Send me a message to apply or for more information!

xx Forum Under Going Renovation | 17 Jan 10

13:40:28 by K3YL3SS | Views: 70 | Comments: 0

Thanks to lots of time being invested by users of this forum it is undergoing a much needed renovation! This should help to reduce all bot posted spam and make the forum more secure as well as making it a more social community. Happy coding!

Pages: [1]

xx Simple Countdown Timer | 17 Jan 10

17:47:02 by K3YL3SS | Views: 73 | Comments: 0

If your site focuses on a specific event such as Christmas or your wedding, you may want to have a count down to let users know how long it will be until the event occurs. We can do this using timestamps and the mktime function.

Let's get going
First we need to set our target date. For our example we will use February 10th, 2007. We would get that with this line:
$target mktime(0002102007);

Next we need to get the current date. We can do that with this line:
$today time ();

We now have to find the difference between them. To do that we simply need to subtract:
$difference = ($target-$today);

Since the timestamp is measured in seconds, we conv...

xx Simple Counter using a TXT File | 17 Jan 10

17:16:42 by K3YL3SS | Views: 62 | Comments: 0

Have you ever wanted a simple counter on your website? Here's how to implement one using PHP!

Let's get started:
First off we are going to work main parts of the script, I am going to call it counter.php
<?
// counter.php
/* First we assign a variable name to our 
txt file that holds our number of hits. */
$count_file = ("counter.txt");
/* This next line sets the variable $number_of_hits equal 
to the value inside the counter.txt */
$number_of_hits file($count_file);
/* Now our next line will increment the number of 
hits in the counter.txt by 1, this will happen 
everytime the page loads. */
$number_of_hits[0]++;
/* Next we need to open the counter.txt file so we 
...

xx PHP for the Absolute Beginner | 17 Jan 10

14:11:18 by K3YL3SS | Views: 75 | Comments: 0

Why?
Why, use PHP? The short answer: it's powerful, it's easy to use, and it's free. Extremely robust and scalable, PHP can be used for the most demanding of applications, and delivers excellent performance even at high loads. Built-in database support means that you can begin creating data-driven applications immediately. Toss in a great manual, a knowledgeable developer community and a really low price (can you spell f-r-e-e?) and you've got the makings of a winner!

What You Need
You need access to a web-host that supports PHP preferably running Apache or you can run it localy on your PC (using wamp), people sometimes use this for testing.

Lets Go!
To tell the server you are using PHP we always use ...


Random Tutorials


* To Forum


* Recent Posts


* Top Boards


* Top Poster

pratamishus pratamishus
604 Posts
admin admin
403 Posts
sirshurf sirshurf
322 Posts
Dem0n
238 Posts
jkhakimov jkhakimov
209 Posts

* Forum Staff

admin admin admin
Administrator
K3YL3SS admin K3YL3SS
Administrator