wappy
Jul 4 2006, 08:49 PM
First create a dir "counters" in root add to it dailyhits.txt, hits.txt, online.txt an CHMOD 0777, place this on index: CODE //online counter $tim = 120+time(); $time = time(); $f = "counters/online.txt"; $nusk = file($f); $sk = count($nusk); $in = $HTTP_USER_AGENT.$REMOTE_ADDR; $fp = fopen($f, "w+"); for($i=0; $i<$sk; $i++) { list($nix, $timf) = explode("|", $nusk[$i]); if($nix !== $in && $timf>$time) { fwrite($fp,$nusk[$i]); }} fwrite($fp, "$in|$tim|\n"); fclose($fp); $xfile=file('counters/online.txt'); $onlinecount=count($xfile); echo "-Online: $onlinecount<br/>";
//day hits counter $fn = "counters/dayhits.txt"; $fp = fopen($fn, "a+"); $fs = filesize($fn); $tdy = date("d/m/y"); if ($fs==0) { $co = 1; fwrite($fp, $tdy."-".$co); }else{ $info = fread($fp, $fs); $cdata = explode("-", $info); ftruncate($fp, 0); if($tdy==$cdata[0]) { $co = $cdata[1]+1; fwrite($fp, $tdy."-".$co); }else{ $co = 1; fwrite($fp, $tdy."-".$co); } } fclose($fp); echo "-Daily hits: $co<br/>";
//total hits counter $fp=fopen("counters/hits.txt","a+"); fputs($fp,"1"); fclose($fp); $totalhits=filesize("counters/hits.txt"); echo "-Total hits: $totalhits</small></p><p align=\"center\"><small>";
Reply
siotoxin
Jul 5 2006, 12:32 AM
Once I get my hosting here I'll be sure to try this out. Thanks for the code.
Reply
innocent-devil
Jul 5 2006, 09:32 AM
hye buddy , thanx for your soo nice sharing . i eas desperately searching for such type of code i am going to use in on my website. thanx again for your so nice sharing. greets.
Reply
dj.dance
Jul 5 2006, 05:10 PM
oh how nice, i wrote that code
Reply
wappy
Jul 8 2006, 02:38 AM
Dj will you stop follow me around wap/web with your sly comments! You uploaded ONLY THE DAILY HITS to my old site to share ok, so i also did SHARE IT! An i doubt you wrote is as you code like a monkey (with no hands or keyboard pmpl) ;-) --- ok i have an update for the counters, i left the online out as it confuses me pmpl, but this new one runs off only one text file (so create file wappyCOUNT.txt) and CHMOD 0777, it will display for you... +daily hits +hits yesterday +days open +months open +years open +total hits +average daily hits CODE //(c)wappyCOUNT $fn = "wappyCOUNT.txt"; $fp = fopen($fn, "a+"); $fs = filesize($fn); $tdy = date("d/m/y"); if ($fs==0) { $co = 1; $yesterday = 0; $open = 0; $total = 1; fwrite($fp, $tdy."-".$co."-".$yesterday."-".$open."-".$total); }else{ $info = fread($fp, $fs); $cdata = explode("-", $info); ftruncate($fp, 0); if($tdy==$cdata[0]) { $co = $cdata[1]+1; $yesterday = $cdata[2]; $open = $cdata[3]; $total = $cdata[4]+1; fwrite($fp, $tdy."-".$co."-".$yesterday."-".$open."-".$total); }else{ $yesterday = $co; $open = $cdata[3]+1; $co = 1; fwrite($fp, $tdy."-".$co."-".$yesterday."-".$open."-".$total); } } fclose($fp); echo "-Daily hits: $co<br/>"; echo "-Yesterday: $yesterday<br/>"; echo "-Days open: $open<br/>"; //months open $months = $open/29.6666667; $months = round ($months, 1); echo "-Months open: $months<br/>"; //years open pmpl $years = $open/356; $years = round ($years, 2); echo "-Years open: $years<br/>"; //total hits echo "-Total hits: $total<br/>"; //average daily hits $average = $total/$open; $average = round ($average); echo "-Average daily: $average<br/>";
if is any errors with this please forgive me im a little drunk pmpl
Reply
nehmanator333
Jul 8 2006, 03:43 AM
Yeah I found a error, wait nvm that was just my browser screwing up.
Reply
wappy
Jul 11 2006, 01:22 AM
No you are correct there were two errors. Here is a corrected update. I will work on it more later :-) --- Oops i made errors again so i have definatly fixed this time and here is the code im using on my own site. You must in your root create a folder called "counters" and inside this counters folder put files online.txt, wappyCOUNT.txt, and counter.dat. You must set permissions on ALL the files in the counters folder to chmod 0777 ok. Then on your index page copy and paste this code where you would like the counters displayed. CODE //online counter $tim = 120+time(); $time = time(); $f = "counters/online.txt"; $nusk = file($f); $sk = count($nusk); $in = $HTTP_USER_AGENT.$REMOTE_ADDR; $fp = fopen($f, "w+"); for($i=0; $i<$sk; $i++) { list($nix, $timf) = explode("|", $nusk[$i]); if($nix !== $in && $timf>$time) { fwrite($fp,$nusk[$i]); }} fwrite($fp, "$in|$tim|\n"); fclose($fp); $xfile=file('counters/online.txt'); $onlinecount=count($xfile); echo "-Online: $onlinecount+<br/>";
//(c)wappyCOUNT $fn = "counters/wappyCOUNT.txt"; $fp = fopen($fn, "a+"); $fs = filesize($fn); $tdy = date("d/m/y"); if ($fs==0) { $co = 1; $open = 0; fwrite($fp, $tdy."-".$co."-".$open); }else{ $info = fread($fp, $fs); $cdata = explode("-", $info); ftruncate($fp, 0); if($tdy==$cdata[0]) { $co = $cdata[1]+1; $open = $cdata[2]; fwrite($fp, $tdy."-".$co."-".$open); }else{ $co = 1; $open = $cdata[2]+1; fwrite($fp, $tdy."-".$co."-".$open); } } fclose($fp); echo "-Daily hits: $co<br/>"; echo "-Days open: $open<br/>"; //total hits $counter_array = file("counters/counter.dat"); $total = $counter_array[0]+1; $fp = fopen("counters/counter.dat","wb"); fputs($fp,$total); fclose($fp); echo "-Total hits: $total<br/>"; //average daily hits $average = $total/$open; $average = round ($average); echo "-Daily average: $average<br/>"; //average hourly hits $averagehour = $average/24; $averagehour = round ($averagehour); echo "-Hourly average: $averagehour<br/>"; //average week hits $averageweek = $average*7; $averageweek = round ($averageweek); echo "-Weekly est: $averageweek+<br/>"; //est month hits $averagemonth = $average*29.5; $averagemonth = round ($averagemonth); echo "-Monthly est: $averagemonth+<br/>"; //average year hits $estyear = $average*356; $estyear = round ($estyear); echo "-Yearly est: $estyear+<br/>";
i apologise again for the errors on my previous counter snippets but i did use and get the errors on my own site also. Well its fixed for sure now, if anyone can update this further please do so and post your code here :-)
Reply
juice
Jul 28 2006, 04:55 PM
I don't know if this helps but you may want to change 356 days to 365 days, there are 365 days in a year right? And you may want to change the avereage for the month from 29.blah to 31.42. I hope this helps and maybe it will give slightly more accurate readings.
Reply
wappy
Jul 29 2006, 10:56 PM
thanks to person above :-) and here is a nice new update --- Here is another update of the counters code, it now has weekly, monthly, and yearly estimates based on the visits recieved on the current daily hits as well as the estimates based on the total average hits. (hope that makes sense lol) just make sure you have created any files refered to in this code in a folder called counters, and paste this code on the index of your site. Please feel free to update it and post here your updates :-) CODE //////(c)wappyCOUNT //daily hits $fn = "counters/wappyCOUNT.txt"; $fp = fopen($fn, "a+"); $fs = filesize($fn); $tdy = date("d/m/y"); if ($fs==0) { $dailyhits = 1; $open = 0; fwrite($fp, $tdy."-".$dailyhits."-".$open); }else{ $info = fread($fp, $fs); $cdata = explode("-", $info); ftruncate($fp, 0); if($tdy==$cdata[0]) { $dailyhits = $cdata[1]+1; $open = $cdata[2]; fwrite($fp, $tdy."-".$dailyhits."-".$open); }else{ $dailyhits = 1; $open = $cdata[2]+1; fwrite($fp, $tdy."-".$dailyhits."-".$open); } } fclose($fp); echo "-Daily hits: $dailyhits<br/>"; echo "-Days open: $open<br/>"; //total hits $counter_array = file("counters/counter.dat"); $total = $counter_array[0]+1; $fp = fopen("counters/counter.dat","wb"); fputs($fp,$total); fclose($fp); echo "-Total hits: $total<br/>"; //average daily hits $average = $total/$open; $average = round ($average); echo "-Daily average: $average<br/>"; //average hourly hits $averagehour = $average/24; $averagehour = round ($averagehour); $averagehourtoday = $dailyhits/24; $averagehourtoday = round ($averagehourtoday); echo "-Hourly average: $averagehour|$averagehourtoday<br/>"; //est week hits $estweek = $average*7; $estweek = round ($estweek); $estweektoday = $dailyhits*7; $estweektoday = round ($estweektoday); echo "-Weekly est: $estweek|$estweektoday<br/>"; //est month hits $estmonth = $average*31.4; $estmonth = round ($estmonth); $estmonthtoday = $dailyhits*31.42; $estmonthtoday = round ($estmonthtoday); echo "-Monthly est: $estmonth|$estmonthtoday<br/>"; //est year hits $estyear = $average*365; $estyear = round ($estyear); $estyeartoday = $dailyhits*365; $estyeartoday = round ($estyeartoday); echo "-Yearly est: $estyear|$estyeartoday<br/>";
Reply
Chatz
Jul 30 2006, 01:45 AM
QUOTE(wappy @ Jul 29 2006, 10:56 PM)  thanks to person above :-) and here is a nice new update --- Here is another update of the counters code, it now has weekly, monthly, and yearly estimates based on the visits recieved on the current daily hits as well as the estimates based on the total average hits. (hope that makes sense lol) just make sure you have created any files refered to in this code in a folder called counters, and paste this code on the index of your site. Please feel free to update it and post here your updates :-) CODE //////(c)wappyCOUNT //daily hits $fn = "counters/wappyCOUNT.txt"; $fp = fopen($fn, "a+"); $fs = filesize($fn); $tdy = date("d/m/y"); if ($fs==0) { $dailyhits = 1; $open = 0; fwrite($fp, $tdy."-".$dailyhits."-".$open); }else{ $info = fread($fp, $fs); $cdata = explode("-", $info); ftruncate($fp, 0); if($tdy==$cdata[0]) { $dailyhits = $cdata[1]+1; $open = $cdata[2]; fwrite($fp, $tdy."-".$dailyhits."-".$open); }else{ $dailyhits = 1; $open = $cdata[2]+1; fwrite($fp, $tdy."-".$dailyhits."-".$open); } } fclose($fp); echo "-Daily hits: $dailyhits<br/>"; echo "-Days open: $open<br/>"; //total hits $counter_array = file("counters/counter.dat"); $total = $counter_array[0]+1; $fp = fopen("counters/counter.dat","wb"); fputs($fp,$total); fclose($fp); echo "-Total hits: $total<br/>"; //average daily hits $average = $total/$open; $average = round ($average); echo "-Daily average: $average<br/>"; //average hourly hits $averagehour = $average/24; $averagehour = round ($averagehour); $averagehourtoday = $dailyhits/24; $averagehourtoday = round ($averagehourtoday); echo "-Hourly average: $averagehour|$averagehourtoday<br/>"; //est week hits $estweek = $average*7; $estweek = round ($estweek); $estweektoday = $dailyhits*7; $estweektoday = round ($estweektoday); echo "-Weekly est: $estweek|$estweektoday<br/>"; //est month hits $estmonth = $average*31.4; $estmonth = round ($estmonth); $estmonthtoday = $dailyhits*31.42; $estmonthtoday = round ($estmonthtoday); echo "-Monthly est: $estmonth|$estmonthtoday<br/>"; //est year hits $estyear = $average*365; $estyear = round ($estyear); $estyeartoday = $dailyhits*365; $estyeartoday = round ($estyeartoday); echo "-Yearly est: $estyear|$estyeartoday<br/>";
you confussing me bro,but thanx anyway
Reply
wappy
Aug 7 2006, 05:35 PM
the SCRIPT TAG does on work on WML/PHP wap scripts only HTML (just incase anyone didn't know this) :-)
Reply
ivenms
Aug 6 2006, 09:22 PM
Iam using a very simple and more optimised hit counter on my site. For implementing that, the procedures are:- Make a file named hits.txtChange its mode to 0777Create a php file naming hits.phpPut the following code on the hits.php fileHTML <?php $hits = file_get_contents("hits.txt"); $hits = $hits+1; $fp = fopen("hits.txt","w"); fwrite($fp,$hits); fclose($fp); echo $hits; ?> Then put the code given below to the page where you like to display the hits on the page:HTML <script language="PHP"> include("hits.php"); </script> This script works only on php files (pages). If your pages are .htm or .html extension, just replace its extension with .php without doing any other things. This script will work on your pages. There also an advanced technique to parse php through html files. But on here this is well suited. Enjoy the simple script and implement on your site.
Reply
Goth_Punk
Aug 5 2006, 04:12 PM
Hahahahaha the drunkerd wapmaster  nice wappy
Reply
wappy
Aug 5 2006, 10:50 AM
no i don't mind sharing it but mine needs updating. Before you post a topic or ask for code/scripts search the forum. I found the script timer come right here in this php programming forum at www.trap17.com
Reply
juice
Aug 4 2006, 06:25 PM
Wappy I guess you don't want to share the script timer? If You want to share it please post it here thenks. because thats about the only thing missing from your counters
Reply
Recent Queries:--
code div style wapmaster - 616.81 hr back. (2)
-
simpletext rotate ads - 889.48 hr back. (1)
Similar Topics
Keywords : simple, text, counters, counters, wap, sites
- Need Help With Flex Rich Text Editor Please!
Im going mad because of the lack of flex support (0)
Best Text-based (mmo)rpg's
(5) What are your favorite text-based mmorpg games?? If you done know what it is try google it. This is
something that every1 should try out, it's a pirate game, the only one in it's kind. You can
do lots of stuff really, try this link and find out;
http://www.ruletheseas.com/index.php?r=149039 If you need any in game help try contacting me,
punx08, and I might send you cash or something else /smile.gif" style="vertical-align:middle"
emoid=":)" border="0" alt="smile.gif" /> Quote from the homepage: "Yarg, a pirate game. Do what ye
want. Mug, steal, kill, and m....
What Kids Game Sites Do You Play On?
(10) Hey just want to see what kind of games are out there to play - I like webkinz.com -- does anyone
else play on that site. What kind of games are you playing? /rolleyes.gif"
style="vertical-align:middle" emoid=":rolleyes:" border="0" alt="rolleyes.gif" />....
Flash Tutorial Simple Motion Tween
Introduction to motion tween (0) A motion tween is a moving object. In this tutorial we will learn how to make a flash with Adobe
Flash CS3 Professional to move graphics around. Follow these steps 1. Open Adobe Flash CS3, click
File New, Selection Action Script 2.0 and click OK (I prefer 2.0 for compatibility) 2. Now you will
see a blank page like, now we will set the canvas size. Click the background or gray area. 3. Click
Size button on the bottom Properties page. Enter the width, as this example will be width 400px,
and height 300px. 4. Click OK 5. Drag a picture from your folder inside the CS3, or ....
Text Size In "fill-in" Form Blanks
How do you change the size of the text in the fill in form entry boxes (2) Thanks for all the help on my previous question about adding an address to a "Submit" button.
I've also been able to add a "print page" button through the help from group members. I now have
another question. I've created a form using the Input commands that ask for name, address,
state, etc. My computer is set to use 12 point text on a 800 x 600 screen resolution. When I hit the
print screen button, everything is printed out fine, but I would like the information that people
will be entering into the various boxes to be of a larger or bolder style. The whole re....
Xampp How Can I Generate "automatic Start Sites"
(7) I am new using XAMPP and PHP. I am trying to build website using Joomla which is required my
computer to have php. So i installed this XAMPP and install my joomla website. My questions is
everytime i type localhost is not going to my joomla website that i built. it always goes to
localhost/xampp. i know i have to configure the httpd.conf but i have no idea how to configure this.
can anyone help me with this. my website folder called "test". how do i redirect to this test folder
so that everytime i type local host it will open the test website. I really appreciate your he....
Create Dynamic Html/php Pages Using Simple Vb.net Code
Taking your application data, and creating a webpage for others to vie (1) This example will show you how use a string in VB to create PHP code. In order to do this, you need
a string to store your PHP page and a function that I will list at the bottom of the page for you to
put in a module. This code is written in VB.NET Public Sub CreatePage(ByVal HTMLTitle As
String, ByVal HTMLText As String, ByVal HTMLFileName As String) Dim strFile As String '
---------------------- ' -- Prepare String -- ' ---------------------- strFile = "" '
-------------------- ' -- Write Starter -- ' -------------------- strFile = " " ....
How To Download Any Flv Files From Any Sites
(6) Now you can download any flv files from any websites!! People often know how to download
youtubes clip, but not from other sites. In this tutorial you will need a tool name Moyea FLV
Downloader, it is free and you can download it at http://www.flvsoft.com/download_flv/ This is
the best tool i have meet up with to download flv files in any site. Since it can detect flv files,
and list it, you can download it as you want, so no more favourite clips goes away from your sight
and now you have it on your own hard drive! 1. Run moyea flv downloader see 1.jpg 2.....
Ad Text
Setting up ads (2) Please, could anyone explain to me how to put up ad text, similar to the absence format by the sides
of my blog.....
Text Visualizer
(1) look: http://wasteyourtimebot.com is a text visualizer with a robot, playing the piano. type in a
text and you will see pictures relevant (or not) to your words... what do you think?....
Question About Framed Sites...
(4) Hey all, I'm curious...I've been doing a lot of reading up on SEO and all and noticed my
site is not "indexed" by any search engines. Could this be due to the frames on my site? At the
moment my site's address is www.takeover.trap17.com but I plan to move to an actual domain once
it's close to being finished. Being on an actual domain should boost my chances of getting
credit for SEO, right? And also, the main question here is...Can you check that out and let me know
if you think it would be okay for indexing? It is split into 4 frames. One banner, one....
An Ode To Gmail.
A small text about how GMail is awesome. (5) Everyone wanted a piece of the e-mail pie. Microsoft made a free e-mail service. Yahoo! made a
free e-mail service. AOL did so too. Each with their goods and bads, their limitations and
restrictions. Until the savior came. Google decided to do the smart move and make a revolutionary
kind of e-mail. Starting off with their beta program that made use of invitations, many people
(including me) found the truly amazing experience and the easy to use interface of GMail it's
key points to lead the e-mail game. GMail kept spreading like mad. Then, account creation we....
When Trap17 Will Host Non-english Sites?
"All websites must be in English to qualify for free hosting"- (6) QUOTE All websites must be in English to qualify for free hosting. We do this to ensure that
Accounts are legal and have permissable contents. I totally agree with the need to ensure that
accounts are legal and have permissable contentes, but I believe there's a big portion of forum
members who speak English as their second language, including myself, and so, I assume some time
they may need free hosting in their native language. So, why can't Trap17 host sites in those
non-English languages which have a large community in the forums? I'm sure that t....
Text Based Game
(6) Is it possible to make a Text Based game with only HTML and some PHP for chat? I dunno any
languages besides HTML. =.= yeah Im a newbie.....
Simple Javascript And Password System
How to protect your pages with password (9) The quickest way to get a password protection system up and running is to use a Prompt box in
JavaScript that has a title like "Enter your Email Address". Only you and the relevant users know
what the password should be, could even be one each, that can be sorted out at the next page then
pass the "input" directly through the url by changing the .href, like
http://www.iSource.net.nz/users/?leTmeIn= The page that then processes this should also check for
the referring page, and three fails from an IP if you like the php (the next page): CODE
<?php // processdo....
Photoshop, Flash And Fireworks Tutorial Site Links
This has a huge links of useful sites (2) Adobe Photoshop Tutorials http://www.rainworld.com/psworkshop/
http://www.reality9.com/tutorials.html http://www.spoono.com/
http://www.stridingstudio.com/tutorials/ http://www.designsbymark.com/pstips/index.html
http://geda-online.com/tutorials.htm http://www.thewebmachine.com/
http://www.extremephotoshop.com/tutorials.aspx
http://www.thinkdan.com/tutorials/photosho...-tutorials.com/
http://www.designerslounge.org/tutorials/ http://www.eyesondesign.net/pshop/tuts.htm
http://www.eyeball-design.com/fxzone/tutorial.htm http://user.fundy.ne....
What Program Do You Use To Design Your Web?
Frontpage, Dreamweaver, a good text editor? (95) I personaly choose frontpage because its easy to use but.....I use dreamweaver for PHP.....
Simple Php Login And Registration System
(15) Hello. This is my first web tutorial ever. This is basically a simple register and login script.
Yes, I know it’s a bit rubbish but I’m quite new to PHP/MySQL. Here’s the register form. This can
be any file extension you like. I’d recommend calling it register.html . CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html
xmlns="http://www.w3.org/1999/xhtml"> <head> <meta
http-equiv="Content-Type" content="text/ht....
Very Simple Online Now Script
This is a very simple online now script. (4) Hi all, Its Aldo. anyways, I wont be using the method of pagination, i will just tell you how to
make a basic online now script. When someone logs in, now take into consideration that the name of
the username input is username ( First ,create a table in your database saying online now and add 2
fields to it. id and username CODE id type=integer(INT) , auto increment, length =255
and username = VARCHAR length=the limit a username should be in your site now from there we take
off : CODE <?php //logged.php //authentication script //connection scri....
Adding Shine To Text
images say "Tiger Ads", but, the board is clsed, so, i'm r (4) OK, in this tut, I am going to show you how to add shine to any text. For this example I will be
using the TigerAds affiliate button. (the board is since closed so, I'm not really advertising
/tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" />) OK then,
lets get started! 1. Open up the image that you will be using, this is mine: 2.
Now that your image is open and making sure that its the .psd so you can edit the text on it. In
your layers menu, hold down CTRL and click on the text layer so that only the te....
Playing Flash Movies Without The One-click Activation: Simple Insertion Of Javascript
(4) In the past year or two iternet explorer and other browsers have updated their coding platforms.
The bad thing is that if you have any flash objects at all within your web page you have to hit the
space bar or click on the flash object to activate it. Once you activate it, you then can interact
with the object or the object will then play on the website. I dont like how you have to activate
the flash player first to interact with it. here is the code to prevent that. Believe me people
notice how much better the site is after you do this. put <script type="text/java....
Which Proxy Sites Can Be Used To Access The Websites?
when in a firewall enviornment (31) My university lately instaled a firewall that prevents us from accessing certain websites I heard
there are some proxy websites that will enable us to circumvent this firewall can you post some
links of such websites? /laugh.gif" style="vertical-align:middle" emoid=":lol:" border="0"
alt="laugh.gif" /> /laugh.gif" style="vertical-align:middle" emoid=":lol:" border="0"
alt="laugh.gif" /> Edited topic title & description ....
Simple C File Handling In Action
Small code snipet which covers most of basic file handling and navigat (4) Yesterday I suddenly got a lot of work. The same work we try to push off, yes you are right all
formalities to get the code review incorporated and update all source code files with code review
headers. Imagine if you need to open 300 files one by one and append code review headers at the
end. Since most files are reviewed in groups of 20 to 30 files. We require one header to be placed
in say 20 to 30 files. To simplify I went back to my class assignment days and wrote this small c
utility to open all files passed on command line and open attach code review headers an....
Other Free Hosting Sites
(42) first of all i just wanna say YAY for being the first to post on this category =) but neways i have
a website ive been working on hosted by 95.mb its wut i find to b the best for my uses so far....so
hopefully when i can i can get some space from this site n see wut the differences between both
sites according to wut your able to do....
Verifying Email Addresses
Using a simple PHP script (9) This simple script will allow you to run some basic checks to make sure that any email address
entered is actually an email address. There is no guarantee offered that this will stop every single
fake email address, but it'll provide some protection. Now, the code! First we need to get
the email address to verify. Here, I get it using POST from an HTML form. CODE <?php //Load
email address from web form $email = $_POST['email']; Now, we move on
to our first check. Does the text that has been entered look like it could b....
Word Wrap Text In Div.
(16) i use 2 div's for the page layout. One for navigation and one for the contents. html Code:
Original - html Code: CODE <div width="10%" style="position:
absolute; left: 2%;">
bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb </div> <div
width="86%" style="position: absolute; left: 14%;"> bbbb </div>
But now the b's wont stay within their div-element. I want lines that doesnt fit on one line
within the divto wrap to the next line. How can i do this?....
How To: Change Your Website's Index File
a simple trick using .htaccess (24) How To: Change Your Website's Index File a simple trick using the .htaccess file A simple
tutorial which only involves editing one little file. Useful for those of us who have mime-typed
extensions or who are creating lots of test design files and want an easy way to make the design
they like best their default file. Create a file called .htaccess in the /public_html/ folder if
you don't have it. I think one should be there already when you get your site so if it isn't
you should create it anyway! In the file write the following: CODE Di....
Many Php Script Sites
(16) Hi I find many sites has PHP scripts :: http://www.proxy2.de/scripts.php http://www.free-php.net
http://knubbe.t35.com/ http://www.ngcoders.com/ http://www.oxyscripts.com/
http://www.phparena.net/ http://www.1phpstreet.com/ http://px.sklar.com/
http://www.scoznet.com/ http://php.resourceindex.com/ /blink.gif' border='0'
style='vertical-align:middle' alt='blink.gif' /> ....
Highly Important Warning About These Free Sites
Avoid getting scammed or tricked (48) Warning: You may be promoting something illegal and may not know it yourself. Please avoid
Pyramid schemes as they are serious and can result in your bank or PayPal account being banned. A
pyramid scheme involves referring many people while you first pay a few dollars to each person on
some sort of list. Most likely you have to modify the list and add your name, while promoting that
list. They often come with a convincing story about how this is perfectly legal. Do not fall for
that. In this forum for money makers, members will post links to a vast variety of si....
Php Calculator
Simple but cool. (17) Hello all, I was eally bored the other day. So I decided to make a php calculator just out of the
blue. I set it up and it works really good. You can see mine here . Ill give you guys the source
code too if you want it. Here it is... Name this calculate_forum.html CODE <html>
<head> <title>Calculation Form</title> </head> <body>
<form method="post" action="calculate.php"> <p>Value 1:
<input type="text" name="val1" size="10"></p> <p>....
Looking for simple, text, counters, counters, wap, sites
|
*RANDOM STUFF*
*SIMILAR VIDEOS*
Searching Video's for simple, text, counters, counters, wap, sites
*MORE FROM TRAP17.COM*
|
advertisement
|
|