Php Comment Page - how to make your own comment page

free web hosting
Free Web Hosting, No Ads > CONTRIBUTE > Tutorials

Php Comment Page - how to make your own comment page

hippiman
I have just uploaded a working example of this put to use, at "hippi.trap17.com/comments/comments.php"


This is my second tutorial on PHP. It's not as long as the last one, and I'm going to try and explain this one better to make sure you know exactly what's going on.
I just figured this out today, so if it's missing any functionality, or there is anything wrong with it, let me know. It worked for me.
This comment page isn't supposed to look good, it's just supposed to work, but you can change the HTML however you want to make it look better and change the overall layout.

First of all, you need to make your config.php in the same directory as your comments page.
CODE
<?
$dbserver="localhost";
$user="root";
$passwd=""; //Enter your password here
$connect=mysql_connect($dbserver,$user, $passwd);
$db = 'forum'; //just a database I picked, use one you already have, or make another one if you really want to.
$pre = 'com_'; //use any prefix you want, as long as nothing else could have it.(you don't really need this, it's just if you have
// something else with a table named 'comments.')

?>

You might want to make it echo something, using "echo 'something';", after the connection to make sure it connected. You could also use the "or die('something')" on the line where it connects, but I've never really gotten that to work.

Now, you need to have your comments.php. The HTML for it should have a form with the method as POST and a text input, a textArea, and a submit button. Make sure you name them 'name', and 'comment'. If you name them anything else, you'll have to change all of your code later to get it to work, so it's just easier to leave the names alone.
CODE
<form method='post'><h3>Name:</h3><br><input type='text' name='name'><br>
<h3>Comment:</h3>
<textarea name='comment'rows="10" cols="50" wrap='hard'></textarea>
<input type='submit' value='submit'></form>

I like "wrap='hard'" better than 'soft' and 'off'. It depends on what you want to do. There are HTML tutorials elsewhere that you could look at to see the difference.

Now, you need to start making your functions.
The first one you need should be a submitter function.

CODE
function submitComment($db, $pre, $name, $com, $connect) { //database, prefix, name, comment, connection
mysql_select_db($db);
$sql = 'CREATE TABLE IF NOT EXISTS ' . $pre . 'comments (id int auto_increment, name text, comment text, primary Key(id));';
mysql_query($sql, $connect); //Makes the table if it doesn't exist. The "." is the concatenation character for PHP

$sql = 'INSERT INTO ' . $pre . 'comments (name, comment) VALUES ("' . $name . '", "' . $com . '");';
mysql_query($sql, $connect); //inserts your comment into the table.
}

The "exiter" function is something I made up to make it so there are no errors when you use quotes, apostrophes, or backslashes. I'm not sure if there are any other characters you would need it for, though. You will use it when you call the submitComment function later.

CODE
function exiter($str) { //makes it so you can insert quotes
for($i=0;$i<strlen($str);$i++) { //loops through every character
$sub = substr($str, $i, 1); // character at the $i position
if($sub=='"' || $sub=="'" || $sub==chr(92)) { //if it has a " or ' or \, it will add a \ before it so it won't think of it as that character.
$beg = substr($str, 0, $i);
$end = substr($str, $i+1, strlen($str));
$str = $beg . chr(92) . $sub . $end; //chr(92) is the backslash
$i++;
}
}
return $str;
}


Now that you have that, you can call your submitter function.
CODE
if ($_POST['name'] && $_POST['comment']) submitComment($db, $pre, $_POST['name'], exiter($_POST['comment']), $connect); //if there is a name and a comment, it will put them in the database.


Now, you need to display your comments from your table. The my showComments function does the trick. Later, though, you might want to change the appearance of the table. If you know anything about HTML, you should be able to do this easily.
CODE
function showComments($db, $pre, $connect) {
mysql_select_db($db);
$numcols = 3; //id, name, comment
$colnames=array(0=>'id',1=>'name',2=>'comment'); //creates an array to use later to read from the database.
$sql = "select * from " . $pre . "comments order by id desc"; //Makes it so it shows the comments in reverse order, so it shows
$result = mysql_query($sql, $connect); //the most recent at the top.
$numrows = mysql_numrows($result);
echo "<table>"; //starts the table, change it's properties however you want.
for ($y=0;$y<$numrows;$y++) { //loops through every row
echo "<tr>";
for ($x=0;$x<$numcols;$x++) { //loops through every column
if($x) echo "<td>" . mysql_result($result, $y, $colnames[$x]) . "</td>"; //The "if" makes it so it doesn't show the row's ID
}
echo "</tr>";
}
echo "</table>";
}

Don't worry, if you don't already have the table, it won't show anything. If it does for you, let me know.

Now, you only need to call the function.
CODE
showComments($db, $pre, $connect);

You don't need an if statement for this, because it should show the previous comments no matter what.

Here is the entire code: (not counting config.php)
CODE
<form method='post'><h3>Name:</h3><br><input type='text' name='name'><br>
<h3>Comment:</h3>
<textarea name='comment'rows="10" cols="50" wrap='hard'></textarea>
<input type='submit' value='submit'></form>
<?
require_once('config.php');
function exiter($str) { //makes it so you can insert quotes
for($i=0;$i<strlen($str);$i++) {
$sub = substr($str, $i, 1);
if($sub=='"' || $sub=="'" || $sub==chr(92)) {
$beg = substr($str, 0, $i);
$end = substr($str, $i+1, strlen($str));
$str = $beg . chr(92) . $sub . $end; //chr(92) is the backslash
$i++;
}
}
return $str;
}

function submitComment($db, $pre, $name, $com, $connect) {
mysql_select_db($db);
$sql = 'CREATE TABLE IF NOT EXISTS ' . $pre . 'comments (id int auto_increment, name text, comment text, primary Key(id));';
mysql_query($sql, $connect);

$sql = 'INSERT INTO ' . $pre . 'comments (name, comment) VALUES ("' . $name . '", "' . $com . '");';
mysql_query($sql, $connect);
}
function showComments($db, $pre, $connect) {
mysql_select_db($db);
$numcols = 3; //id, name, comment
$colnames=array(0=>'id',1=>'name',2=>'comment');
$sql = "select * from " . $pre . "comments order by id desc";
$result = mysql_query($sql, $connect);
$numrows = mysql_numrows($result);
echo "<table>";
for ($y=0;$y<$numrows;$y++) {
echo "<tr>";
for ($x=0;$x<$numcols;$x++) {
if($x) echo "<td>" . mysql_result($result, $y, $colnames[$x]) . "</td>";
}
echo "</tr>";
}
echo "</table>";
}
if ($_POST['name'] && $_POST['comment']) submitComment($db, $pre, $_POST['name'], exiter($_POST['comment']), $connect);
showComments($db, $pre, $connect);

//Whenever you want to delete the comments, just do a drop table on your PHPmyAdmin.
//I'll probably figure out how to delete them depending on when they were submitted.
?>


If this script doesn't work, you might need to change the first "<?" to "<?php". I've configured my PHP to work either way.
If you have any suggestions, or know a way to make it delete old comments, please let me know.

Don't read past this if you don't care how I learned this(it's kind of boring, and I blabber(<--funny word xd.gif ) a lot)...

I'm new to PHP, HTML, and CSS, so if anyone knows of any good tutorials, please help.
It took me around two hours to get this to work because I didn't know exactly what I was doing. I learned most of it as I made the page, like I just found out what an exitor was, so it took like 20 minutes to figure out why it wouldn't insert anything with quotes or anything; so when I found that out, I made up a function to get it to work anyway. Trying to get my "exiter" function to work is when I learned about PHP string handling.
I also tried to make a version of this that works with text files, so I learned a lot about file handling, too; but I found out that it wasn't efficient enough that way, and you can end up with a lot of errors if there is more than one person at a time, and it's really slow.
Sorry if I'm starting to annoy you. I'll just shut up. blush.gif

 

 

 


Reply

jlhaslip
Perhaps you could add a sample page to the Tutorial posting so others can see how it works???

You have covered some good ground here. Lots of functions and programming design tips there. I'll test it out later.

Reply

Forbez
Yes, A sample page would be great. But I can see that your tutorial must of taken ages. Well, well done it looks good so far. I might try it out later. Again, well done.

Reply

Forbez
QUOTE(jlhaslip @ Apr 30 2007, 12:51 AM) *
Perhaps you could add a sample page to the Tutorial posting so others can see how it works???

You have covered some good ground here. Lots of functions and programming design tips there. I'll test it out later.

Yes, A sample page would be great. But I can see that your tutorial must of taken ages. Well, well done it looks good so far. I might try it out later. Again, well done.

Reply

hippiman
My "exiter" function that I had before was kind of wrong.
I've just found out that "chr(13)" is the new line character for the textarea, so I edited my old function, so now it looks like this:
CODE
function exiter($str) { //makes it so you can insert quotes
for($i=0;$i<strlen($str);$i++) {
$sub = substr($str, $i, 1);
if($sub=='"' || $sub=="'" || $sub==chr(92) || $sub==chr(13)) {
$beg = substr($str, 0, $i);
$end = substr($str, $i+1, strlen($str));
if($sub==chr(13)) $str = $beg . '<br>' . $end; //changes it to an HTML break
else $str = $beg . chr(92) . $sub . $end; //chr(92) is the backslash
$i++;
}
}
return $str;
}


Also, you might have problems depending on if you use the $sub=="'" because it depends on what character you were using as quotes in your INSERT statement. If it adds extra slashes to your comments, just take one of those statements out.

EX: if($sub==' " ' || $sub==chr(92) || $sub==chr(13)) { //took out the one that said " ' "(other kind of quote)

I'm also planning on making a tutorial on making a login page, but if there's another one that says everything I would, I'll just leave it alone, and if I don't ever get around to it, sorry(I'm probably not that good at explaining this anyway).

 

 

 


Reply

matak
Darn. Somebody is always using MySQL for comments, and lot's of other stuff. Well i'll write a Flat File script for those things so you guys will see..
Flat file rules laugh.gif j/k

Reply

galexcd
QUOTE(matak @ May 3 2007, 08:48 PM) *
Darn. Somebody is always using MySQL for comments, and lot's of other stuff. Well i'll write a Flat File script for those things so you guys will see..
Flat file rules laugh.gif j/k



I once made a javascript/php chat in just a text file. After a while as I was adding more stuff like edit, and timestamps, the file started to mess up. Whenever somebody would edit, the chat logs php would have to escape out all the quotes and backslashes. One day i looked at the logs and it was something like:

QUOTE
Alex: heh and then I said \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"people are cool\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"
Will: what do you mean by that? isn\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'t that from a movie somewhere?

by the way, i just made up those two lines, I never said such thing! But thats not the point, anyway I had alot more control when every message was in sql. In a text file, i had to parse the file for every line every time I checked for stuff like bb code etc...

Also, if a user changed his or her username, in a text file it wouldn't update, unless you kept their id in the chat text and replaced it on getting the data, which would be another big hassle.

All in all, SQL RULES!

Reply

rize619
hey can we create some database program in javascript ?
bcoz our teacher gives us the assignment on that ??
and my answer was simple there that no ...
is that possible a database in Javascript ?

Reply

matak
I don't think so. Pure Javascript can't connect to database (i might be wrong), but instead Ajax is used to do that. Asynchronous Javascript and Xml technology, that has advantage like xhttp request or something. You can check both on

w3schools(Javascript, Ajax), or Wikipedia links(Javascript, Ajax)

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Recent Queries:-
  1. how to make a comment page on a website - 12.97 hr back. (2)
  2. php comment - 114.37 hr back. (2)
Similar Topics

Keywords : php, comment, page, make, comment, page

  1. Make An Extra $50 Or More Per Day!
    (5)
  2. Php Linking
    Ned help to do this through a internal portal page. (2)
    OK I'm trying to create an internal php page to link to my main sites index.html page.
    Here's the code that's automatically generated when I click on the Create Php page link.
    CODE <?php /* Write code inserting output inside variable $content as in following
    example. You have DB connection, all global vars and all MKPortal and Forum functions at your
    availability */ $nome = $mkportals->member['name'];
    $content="Hi $nome"; So, how would I change this so it links to my sites
    index.html page? PS I....
  3. How To Make Image Buttons Act As Submit Button
    (8)
    Hi guys I m making a personal website .... I asked in the forum how to create and use images as
    buttons...thanks for your help.. I can make them work as links....give some hovering effects
    etc...they work very well..untill I use them in forms and use them as SUBMIT or RESET button...when
    I do this nothing happens on clicking the image button... the code I use is like but there
    is problem in making them act as SUBMIT or RESET button. I have tried very hard to make it work, but
    didn't succeed .... I know html and CSS quite well but , don't know....Javascr....
  4. Make Free Money Online
    Make free money online (2)
    Hi everyone im sure you have heard of sites where they pay to look at adds well thats exactly what
    im here to talk about it is very easy just have to spend some time on it ive made $468 in just
    4 months but think about it thats with out paying anything and mostly by referring my friends!
    it really is easy and it puts some extra cash in my pocket! its easy i'll tell you how to
    do it just go to bux.to and click on the links to sign up your free account and then start
    referring your friends family or anyone and click on the adds and all you have to do i....
  5. Web Page Designing
    (5)
    as a beginner how we can start to learn web page designing....
  6. Making A Screenshot
    A tutorial on how to make a screenshot with MS (3)
    Specs Hardness: 1 Time: about 2 minutes Needings: -A (small) brain -A keyboard -MS Paint
    Steps: 1. Press the Print Screen button on your keyboard. 2. Open Microsoft Paint. 3. Paste
    (CTRL+V). 4. Save/Edit the image. (I prefer saving as .png or .tif) ét voila, you've just got
    yourself a picture /wink.gif" style="vertical-align:middle" emoid=";)" border="0" alt="wink.gif"
    />....
  7. Paypal
    How can I make money (10)
    I want to create a PayPAl accoount so that I can have money online but I don't know what
    I'll do to make the money. Someone told me about Paid surveys, how safe and lucrative are they?
    What are u guys using? Can anyone point me to other ways of making money. Are there other services
    worth knowing besides paypal?....
  8. How To Make Your Own Counter Strike Source Dedicated Server!
    (34)
    Ok, so you want to host your own CSS Server on your computer eh? Well you will not need a lot of
    things, and it is very simple. All you will need is time. /biggrin.gif"
    style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> I did this tutorial
    myself, from my experience when I made my own CSS Server. This is just a simple tutorial! It
    ONLY covers the basics of making a CSS server! Lets Get Started! /laugh.gif"
    style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif" /> 1. Download the HLDS
    Update Tool from here . 2. On....
  9. How To Make A Website ?
    I want help please. (11)
    Ok i have made my own forum. Its cool and looks like its going to go places. Anyway i wanted to add
    a website and other pages to this. So i can have my forum through my website. I need some info on
    it please. What is the best way to work this out ? Im quite new to all this but learning all the
    time. I just need someone kind to help me or point me in the right direction. Also can you please
    let me know if its a bad idea to have a website and a forum. Or to just stick with the forum.
    Thanks Chris... ....
  10. Budding Java Game Developers?
    Ever wanted to make your own java web-based game, but not had the time (9)
    Right, this is the first post of hopefully many in this thread. Basically the idea is to get many
    developers together to share ideas and knowledge to create our very own game. First we'll be
    asking for is any ideas of what kind of game everybody would like to make, and then we'll set
    about assigning tasks depending on everybodies skills. We will need programmers, artists,
    web-designers, even admin and marketing. This will be freeware, but the experience will be great.
    So, ideas anyone?....
  11. Help Creating A Profile Website
    how do i make a profile website (13)
    Ok this is my idea: I am making a website about anime. Its function is add anime, review anime,
    search anime, anime information. Users can make a profile. People can make a profile which they can
    edit to theire likes with html to give it a fancy look.(this is what my problem is about) What i
    would like to know is how can i accomplish this. I already have the database for the anime titles
    etc ready, the only thing that needs to be done is the profile section. If you have any tutorial,
    tip or guide i would really really appriciate it. Thx in advance. ....
  12. What Kind Of Car Do You Have?
    make and model? :D (26)
    I was curious on what kinda car people have o.o; I have a 91' Eagle Talon TSi AWD it has a 6
    cylinder Turbo its automatic and Its Pearl White! well it will be pearl white soon o.o; cause
    i'm getting my dad to repaint it for me~ annd we are getting it registered next week!
    i'm so excited. /laugh.gif" style="vertical-align:middle" emoid=":lol:" border="0"
    alt="laugh.gif" />....
  13. How To Get A Girl That Has Refused You
    Not refused, really, she can't make up her mind... (12)
    Hello again everyone... By now many of you should know my story...this thread is just a
    continuation of my last one, but in a new title, since this is not relevant at all to 'What to
    do on a Date' thread. I am sorry if my case sounds a bit too...long and boring...but well really
    don't know what to do and I need some advice...So please bear with me. Ok, here it
    is...Yesterday I asked her out, with full confidence that she likes me 99.99% (because she glances
    and smiles at me every now and then) and because her friends told me so (on Thursday). So after
    schoo....
  14. Runescape Private Server
    How to make your own private server and make runescape cash with it :) (69)
    First off you need a source: You can download one of these. QUOTE Cheezscape 80 -
    http://www.megaupload.com/?d=W8NCP0YC Cheezscape Pk - http://www.megaupload.com/?d=SOK1SPVR
    Project 16 V.6 Edit 8 - http://rapidshare.com/files/10028200...DIT_8.rar.html Project 16 v3 -
    http://www.megaupload.com/?d=ZFYG6T8B Project 16 Blitz -
    http://d.turboupload.com/d/1544978/P16_Blitz.rar.html Project16 V.6 Full Source -
    http://files.filefront.com//;5486316;;/ Project16 V.6 Full Source -
    http://www.megaupload.com/?d=IAO4H58V Project16 V.6 Full Source - http://rapidshar....
  15. How To Make A Counter Strike 1.6 Dedicated Server
    CS 1.6 Dedicated Server with Admin Mod and Stats Me (16)
    How to make a Counter Strike 1.6 Dedicated server What do we need ? HLDSupdatetool ->
    http://www.steampowered.com/download/hldsupdatetool.exe NoSteamPatcher ->
    http://www.gameszone.ro/downloads/no-won-steam.zip AdminMod + MetaMod ->
    http://ovh.dl.sourceforge.net/source....50.60-win.zip StatsMe ->
    http://ovh.dl.sourceforge.net/source....3-cstrike.zip Step 1 Create a dir were the server will be
    installed example C:\HLDS Open hldsupdatetool.exe, click next , then I agree we will get to the
    destination folder, here we press browse and select Local Disk C ,....
  16. Best Ways To Make Money In Runescape
    (12)
    1.) this is the first.... go run nature runes then fletch yew longs and alch them for money you can
    keep them noted and alch a few thousand times. if you don't have the fletching level make steel
    platebodys which are more time consuming but well worth the while. 2.) merchanting. the best thins
    to merchant are new items buy them for under 300k and sell for 500k on the first day of the new
    treasure trail release. 3.) pking. start up a pking account withh some friends that you can all pk
    on to get items like rune scimitars. 4.) pick flax in camelot then run to the ho....
  17. Make Calls From The Internet?
    How can I make calls from the internet? (8)
    Could you please let me know..How can I make calls from the internet? I know some of the tools
    like skype with which we can call any landline number within a country..!! is there any tool
    with which I can make calls to mobiles and to any country? Please reply to me.. Thanks in
    advance.. Prakash ....
  18. Make Money Online!
    (17)
    If you see these "make money online" things that say stuff envelopes, read emails or anything and
    they ask you for money dont do it. Stay away. If it was that easy everyone would do it. There is
    no easy way to get money. I am sure many will say yes there is look at this link. Well im not
    gonna look at the link. People arent into giving away money. The only way to do it is to sell a
    product or service. Find something your interested in and sell it....make a site about it, sell at
    the flea market, farmers markets, any where you can..... So stay away from those mak....
  19. How Do I Make A Website
    (20)
    Well, I don't think this is the right place to ask tis question but I need help. I have no idea
    on how to make a website and I'm so confused. Please help! Moving from Tutorials to Web
    designing discussion ....
  20. Windows Vista Tranformation Pack
    Make you computer look like Vista (75)
    Ok, some people here have probabely been trying to make their computer look like Windows Vista. I
    have to, i found themes and so on but nothing i like they were all crusty, i searched and searched.
    And found one, The Vista Transformation Pack 4.0 (They will probabely make new versions of it).
    http://www.softpedia.com/get/System/OS-Enh...tion-Pack.shtml It contains everything # Icons #
    Themes # Visual Themes # Bootscreen # Login Screen # Sounds # Transparency # Start Menu Changes
    (WIth Vista Button inseat of start) --Thats all i can think of but there probabely more.....
  21. How Do I Make Gold Fast In Runescape/
    (126)
    OK i have been playin for liken 4 years and i still can't get alot of gp. the mosti have had in
    that time is like 10k and i have googled cheat codes and all that stuff and nothing works so any
    ideas are welcome.....
  22. Google To Take On Geocities
    Google Page Creator (53)
    Well I just found out about a new webhosting service offered by Goolge, the highly imaginatively
    titled Google Page Creator, its your basic (ie not very good) free webhosting services, with the
    massive advantage of its name being preceded by the all powerful Google. I havent extensively used
    the service but I will atempt a brief overview of the service. The basic service consists of the
    usual what you see is what you get (WYSIWYG), which is allows novice users to create pages with no
    knowlegde of HTML (I'm sure you all know ho wthey work). It comes in the usual temp....
  23. Problem With Page Redirect
    Help me out with this problem... (8)
    hey ppl, i just wanted a little help...i designed this website, but i want that if i click on
    certain link, it should open new page for few seconds and then browser should automatically redirect
    me to some other page....i tried this with header() function but i couldnt do the wait n redirect
    part, ... so somebody plz help.... -thanx in advance! Thanks Avalon, topic changed. ....
  24. How To Make A Web Browser
    Visual Basic 6 (49)
    This is a simple and specific tutorial on how to make a basic web browser in Visual Basic 6. Steps
    1-3 Create a new project, and then go to "Project" on the menu. Click components as shown in the
    following image. Find the component "Microsoft Internet Controls," check it, and click "Apply" and
    then "Close." Click the icon that was just added in the tools window, and draw a large sized
    window with it. This is going to be where you view webpages through your browser, so don't make
    it small, but leave room for buttons and other accessories. Steps 4-6 Make a t....
  25. Make Your Own Mmorpg
    Gaming Engine (41)
    check out the konfuze.com website, they are a great community. they are always in development but
    this program allows you to create your own mmorpg. it gives you a server and client package so if
    you turn the server on and have the client avalable for downlaod on your website, they can connect
    to your server and play your MMORPG Go check thier site out site link expired. check posts below
    for alternatives. ....
  26. Why Dont Have Burnout Games For Pc?
    please EA make a burnout version for PC (12)
    i opened this place for we tell a reason why EA would make a Burnout version for PC. OMG they are
    losting money. Burnout is the best racing game i ever ever played, think about in playing on lan
    with 10 friends? every one today have a joystick for pc, so the game feeling was the same please EA
    we are clamming for you to make a version to pc, is so hard to make it? i would apreciate if your
    guys postion your feelings too, tkz....
  27. A Pretty Good Easy Way To Make Some Money
    runescape./ (21)
    well if you have like runescape accounts or so and stuff. you should make like new accounts and then
    make them members (5 USD a month) auto the acc and forget about it. move money to a legit character.
    ya u lose the 5 bucks per acc but you can make about 150 bucks for each char a month. well if you
    thieve guards for a whole month about 1 million= 5 USD a day.....
  28. Making Money Creating Logo's
    How to make money designing logos using Adobe Photoshop (19)
    Hey all, Over the last few years I have been experimenting with making money over the internet.
    Being a very creative person I naturally took on to web design. However, I soon found that it was
    too time consuming for my liking and it rarely paidf off. Whilst playing around with Photoshop
    which someone bough me as a present I started to learn the essential techniques of graphic
    designers. Before I knew it I was able to make basic logos that could be sold at a price. Not long
    after discovering this I found a site that did forum auctions on logos. A customer requests a ....
  29. Php Unique Hit Counter
    Count page hits with php. (29)
    Hello all, Here is a neat and helpful PHP script that can count unique page views on your website.
    First you need to open up a new page in your text editor and paste in this code. CODE <?php
    $filename = "hits.txt"; $file = file($filename); $file =
    array_unique($file); $hits = count($file); echo $hits; $fd
    = fopen ($filename , "r"); $fstring = fread ($fd , filesize
    ($filename)); fclose($fd); $fd = fopen ($f....
  30. Key Logger.
    How To Make (36)
    Hi Pe /cool.gif' border='0' style='vertical-align:middle' alt='cool.gif' /> ple ,
    Can Any One Tell me how to build a Keylogger on Visual Bais 6.0 that no one
    could see on the End Task Menu....

    1. Looking for php, comment, page, make, comment, page

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for php, comment, page, make, comment, page

*MORE FROM TRAP17.COM*
Similar
Make An Extra $50 Or More Per Day!
Php Linking - Ned help to do this through a internal portal page.
How To Make Image Buttons Act As Submit Button
Make Free Money Online - Make free money online
Web Page Designing
Making A Screenshot - A tutorial on how to make a screenshot with MS
Paypal - How can I make money
How To Make Your Own Counter Strike Source Dedicated Server!
How To Make A Website ? - I want help please.
Budding Java Game Developers? - Ever wanted to make your own java web-based game, but not had the time
Help Creating A Profile Website - how do i make a profile website
What Kind Of Car Do You Have? - make and model? :D
How To Get A Girl That Has Refused You - Not refused, really, she can't make up her mind...
Runescape Private Server - How to make your own private server and make runescape cash with it :)
How To Make A Counter Strike 1.6 Dedicated Server - CS 1.6 Dedicated Server with Admin Mod and Stats Me
Best Ways To Make Money In Runescape
Make Calls From The Internet? - How can I make calls from the internet?
Make Money Online!
How Do I Make A Website
Windows Vista Tranformation Pack - Make you computer look like Vista
How Do I Make Gold Fast In Runescape/
Google To Take On Geocities - Google Page Creator
Problem With Page Redirect - Help me out with this problem...
How To Make A Web Browser - Visual Basic 6
Make Your Own Mmorpg - Gaming Engine
Why Dont Have Burnout Games For Pc? - please EA make a burnout version for PC
A Pretty Good Easy Way To Make Some Money - runescape./
Making Money Creating Logo's - How to make money designing logos using Adobe Photoshop
Php Unique Hit Counter - Count page hits with php.
Key Logger. - How To Make
advertisement



Php Comment Page - how to make your own comment page



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE